Intrastat Codes definition track changes

develop
Andreas Osim 2022-10-05 09:58:21 +02:00
parent b4b39612af
commit 6cb7bdc400
2 changed files with 9 additions and 2 deletions

View File

@ -40,12 +40,15 @@ else:
class ReportIntrastatCode(models.Model): class ReportIntrastatCode(models.Model):
_inherit = "report.intrastat.code" _name = 'report.intrastat.code'
_inherit = ['report.intrastat.code','mail.thread']
_sql_constraints = [ _sql_constraints = [
('name_uniq', 'unique(name)', 'Der Intrastat-Code muss eindeutig sein'), ('name_uniq', 'unique(name)', 'Der Intrastat-Code muss eindeutig sein'),
] ]
active = fields.Boolean(string='Active', default=True, help="If unchecked, it will allow you to hide the code without removing it.") name = fields.Char(track_visibility='onchange')
description = fields.Char(track_visibility='onchange')
active = fields.Boolean(string='Active', default=True, help="If unchecked, it will allow you to hide the code without removing it.",track_visibility='onchange')
class ProductTemplate(models.Model): class ProductTemplate(models.Model):

View File

@ -222,6 +222,10 @@
<field name="active" widget="boolean_button" options='{"terminology": "active"}'/> <field name="active" widget="boolean_button" options='{"terminology": "active"}'/>
</button> </button>
</div> </div>
<div class="oe_chatter">
<field name="message_follower_ids" widget="mail_followers"/>
<field name="message_ids" widget="mail_thread"/>
</div>
</xpath> </xpath>
</field> </field>
</record> </record>