11 lines
398 B
Python
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')
|