13 lines
332 B
Python
13 lines
332 B
Python
|
from netforce.model import Model, fields
|
||
|
|
||
|
class DepartmentProduct(Model):
|
||
|
_name="clinic.department.product"
|
||
|
_string="Department Product"
|
||
|
|
||
|
_fields={
|
||
|
"product_id": fields.Many2One("product","Product"),
|
||
|
"department_id": fields.Many2One("clinic.department","Department"),
|
||
|
}
|
||
|
|
||
|
DepartmentProduct.register()
|