v2-bh
This commit is contained in:
parent
f2f9ff0043
commit
07bc635772
|
|
@ -3592,6 +3592,11 @@ msgstr "توقيع"
|
|||
msgid "To Delegate?"
|
||||
msgstr "تفويض"
|
||||
|
||||
#. module: exp_transaction_documents
|
||||
#: model:ir.model.fields,field_description:exp_transaction_documents.field_transaction_transaction__last_action_date
|
||||
msgid "Last Action"
|
||||
msgstr "آخر إجراء"
|
||||
|
||||
#. module: exp_transaction_documents
|
||||
#: model:ir.model.fields,field_description:exp_transaction_documents.field_cm_entity__delegate_employee_id
|
||||
msgid "Delegate Employee"
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ class Transaction(models.Model):
|
|||
seen_before = fields.Boolean(compute="_compute_seen_before")
|
||||
to_ids = fields.Many2one(comodel_name='cm.entity', string='Send To')
|
||||
to_delegate = fields.Boolean(string='To Delegate?')
|
||||
last_action_date = fields.Datetime(string='Last Action', )
|
||||
last_action_date = fields.Datetime(string='Last Action',default=fields.Datetime.now )
|
||||
|
||||
@api.depends('type','subject')
|
||||
def compute_img(self):
|
||||
|
|
|
|||
|
|
@ -51,6 +51,7 @@
|
|||
<field name="from_id"/>
|
||||
<field name="partner_id"/>
|
||||
<field name="name"/>
|
||||
<field name="last_action_date"/>
|
||||
<field name="incoming_number"/>
|
||||
<field name="transaction_date" optional="hide"/>
|
||||
<field name="subject"/>
|
||||
|
|
|
|||
|
|
@ -48,6 +48,7 @@
|
|||
<tree default_order="last_action_date desc" decoration-info="seen_before == False"
|
||||
string="Internal Transaction" create="false" edit="false">
|
||||
<field name="name"/>
|
||||
<field name="last_action_date"/>
|
||||
<field name="transaction_date"/>
|
||||
<field name="subject"/>
|
||||
<field name="subject_type_id"/>
|
||||
|
|
|
|||
|
|
@ -47,6 +47,7 @@
|
|||
<tree default_order="last_action_date desc" decoration-info="seen_before == False"
|
||||
string="Outgoing External Transaction" create="false" edit="false">
|
||||
<field name="name"/>
|
||||
<field name="last_action_date"/>
|
||||
<field name="transaction_date"/>
|
||||
<field name="subject"/>
|
||||
<field name="subject_type_id"/>
|
||||
|
|
|
|||
Loading…
Reference in New Issue