22 lines
657 B
Python
22 lines
657 B
Python
from odoo import api, fields, models, _
|
|
from odoo.exceptions import UserError
|
|
|
|
|
|
class Bill(models.Model):
|
|
_name = "pos.bill"
|
|
_order = "value"
|
|
_description = "Coins/Bills"
|
|
|
|
name = fields.Char("Name")
|
|
value = fields.Float("Coin/Bill Value", required=True, digits=(16, 4))
|
|
pos_config_ids = fields.Many2many("pos.config", string="Point of Sales")
|
|
|
|
@api.model
|
|
def name_create(self, name):
|
|
try:
|
|
value = float(name)
|
|
except:
|
|
raise UserError(_("The name of the Coins/Bills must be a number."))
|
|
result = super().create({"name": name, "value": value})
|
|
return result.name_get()[0]
|