finantial impact
This commit is contained in:
parent
5886d7ddc8
commit
c975372576
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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',)
|
||||
|
|
|
|||
|
|
@ -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"/>
|
||||
|
|
|
|||
Loading…
Reference in New Issue