Add initial Odoo FSM modules and deployment make targets

This commit is contained in:
Ruslan Bakiev
2026-02-13 15:04:50 +07:00
parent 9ec614aa23
commit 43e76b2e8b
35 changed files with 793 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
from odoo import fields, models
class RepairMaterial(models.Model):
_name = "repair.material"
_description = "Repair Material"
_order = "name"
name = fields.Char(required=True)
default_code = fields.Char(string="Code")
uom_name = fields.Char(string="UoM", default="pcs")
standard_cost = fields.Float(string="Cost")
active = fields.Boolean(default=True)