Update outgoing_transaction.py
This commit is contained in:
parent
f2ffb0e673
commit
a950cad2d0
|
|
@ -19,7 +19,7 @@ class OutgoingTransaction(models.Model):
|
|||
, column2='entity_id', string='Send To')
|
||||
company_name = fields.Many2one('res.partner',string='Delivery Company')
|
||||
|
||||
to_users = fields.Many2many(comodel_name='res.users', string="To Users",related="to_ids.user_id")
|
||||
to_users = fields.Many2many(comodel_name='res.users', string="To Users",related="to_ids.user_id",store=True)
|
||||
|
||||
|
||||
|
||||
|
|
@ -33,7 +33,7 @@ class OutgoingTransaction(models.Model):
|
|||
to_name = fields.Char(string="Recipient")
|
||||
cc_ids = fields.Many2many(comodel_name='cm.entity', relation='outgoing_entity_cc_rel',
|
||||
column1='outgoing_id', column2='entity_id', string='CC To')
|
||||
cc_users = fields.Many2many(comodel_name='res.users', string="CC Users",related="cc_ids.user_id")
|
||||
cc_users = fields.Many2many(comodel_name='res.users', string="CC Users",related="cc_ids.user_id",store=True)
|
||||
processing_ids = fields.Many2many(comodel_name='outgoing.transaction', relation='transaction_outgoing_outgoing_rel',
|
||||
column1='transaction_id', column2='outgoing_id',
|
||||
string='Process Transactions outgoing')
|
||||
|
|
|
|||
Loading…
Reference in New Issue