update translation

This commit is contained in:
esraa 2024-10-23 11:53:40 +03:00
parent 767e9c2acd
commit 67c2efeeb4
2 changed files with 494 additions and 159 deletions

File diff suppressed because it is too large Load Diff

View File

@ -82,17 +82,17 @@ class Unit(models.Model):
stamping = fields.Char(string="Stamping Number", related='property_id.stamping')
stamping_date = fields.Date(string="Stamping Date", related='property_id.stamping_date')
# stamping_state = fields.Selection(related='property_id.stamping_state')
stamping_attach = fields.Binary("Stamping Attach", attachment=True, related='property_id.stamping_attach')
stamping_attach = fields.Binary("Stamping Attach", attachment=True,store=True, related='property_id.stamping_attach')
stamping_2 = fields.Char(string="Stamping Number", related='property_id.stamping_2')
stamping_date_2 = fields.Date(string="Stamping Date", related='property_id.stamping_date_2')
stamping_attach_2 = fields.Binary("Stamping Attach", attachment=True, related='property_id.stamping_attach_2')
stamping_attach_2 = fields.Binary("Stamping Attach", attachment=True,store=True, related='property_id.stamping_attach_2')
stamping_state_2 = fields.Selection([('updated', 'Updated'), ('not_updated', 'Not Updated')],
related='property_id.stamping_state_2')
stamping_3 = fields.Char(string="Stamping Number", related='property_id.stamping_3')
stamping_date_3 = fields.Date(string="Stamping Date", related='property_id.stamping_date_3')
stamping_attach_3 = fields.Binary("Stamping Attach", attachment=True, related='property_id.stamping_attach_3')
stamping_attach_3 = fields.Binary("Stamping Attach", attachment=True,store=True, related='property_id.stamping_attach_3')
stamping_state_3 = fields.Selection([('updated', 'Updated'), ('not_updated', 'Not Updated')],
related='property_id.stamping_state_3')