hms_bak/bross_hms/models/hms_services.py
2024-11-18 01:32:18 +04:00

11 lines
230 B
Python

# -*- coding: utf-8 -*-
from odoo import models, fields, api, _
class PaymentCategories(models.Model):
_name = 'hms.payment.categories'
_description = 'Payment Categories'
name = fields.Char('Name', required=True)