Split FSM into separate modules and switch customer to address book

This commit is contained in:
Ruslan Bakiev
2026-02-13 15:27:48 +07:00
parent 98a92286ce
commit dc58e1ffe4
46 changed files with 3125 additions and 152 deletions

View File

@@ -0,0 +1,11 @@
from odoo import fields, models
class RepairFsmZone(models.Model):
_name = "repair.fsm.zone"
_description = "FSM Zone"
_order = "name"
name = fields.Char(required=True)
code = fields.Char()
active = fields.Boolean(default=True)