finantial impact

This commit is contained in:
ahmed-nouri051 2025-05-20 10:31:45 +02:00
parent 5886d7ddc8
commit c975372576
3 changed files with 9 additions and 0 deletions

View File

@ -239,6 +239,11 @@ msgstr "الخدمة الذاتية"
msgid "Self Service?"
msgstr "الخدمة الذاتية؟"
#. module: system_dashboard_classic
#: model:ir.model.fields,field_description:system_dashboard_classic.field_base_dashbord__is_financial_impact
msgid "Financial Impact?"
msgstr "تأثير مالي؟"
#. module: system_dashboard_classic
#: model:ir.model.fields,field_description:system_dashboard_classic.field_base_dashbord__sequence
msgid "sequence"

View File

@ -36,6 +36,9 @@ class BaseDashboard(models.Model):
is_self_service = fields.Boolean(
string='Self Service?',
)
is_financial_impact = fields.Boolean(
string='Financial Impact?',
)
form_view_id = fields.Many2one('ir.ui.view', string='Form View', )
list_view_id = fields.Many2one('ir.ui.view', string='List View',)

View File

@ -16,6 +16,7 @@
<field name="list_view_id" options="{'no_create_edit': True}" domain="[('type','=','tree'),('model','=',model_name)]" />
<field name="action_id" options="{'no_create_edit': True}" domain="[('res_model','=',model_name)]" required="1" />
<field name="is_self_service"/>
<field name="is_financial_impact"/>
<field name="sequence"/>
<field name="action_domain" invisible="1" />
<field name="action_context" invisible="1"/>