clinic management

This commit is contained in:
XuanHuyen
2025-03-22 09:11:09 +07:00
parent 37590ce057
commit 662726af4e
21 changed files with 587 additions and 0 deletions
@@ -0,0 +1,8 @@
from odoo import models, fields, api
class ClinicService(models.Model):
_name = 'clinic.service'
_description = 'Dịch vụ'
name = fields.Char(string='Tên dịch vụ', required=True)
price = fields.Float(string='Giá dịch vụ')