Files
Odoo-Tutorial/student_management/models/student_course.py
T
2025-03-09 22:54:18 +07:00

11 lines
398 B
Python

from odoo import fields, models
class StudentCourse(models.Model):
_name = 'student.course'
_description = 'Student Course'
name = fields.Char(string='Môn học', required=True)
code = fields.Char(string='Mã môn học', required=True, unique=True)
credit = fields.Integer(string='Số tín chỉ')
student_ids = fields.Many2many('student.student', string='Học sinh')