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