|
|
@ -21,14 +21,17 @@ class PosPaymentChangeWizardLine(models.TransientModel): |
|
|
|
) |
|
|
|
|
|
|
|
company_currency_id = fields.Many2one( |
|
|
|
comodel_name='res.currency', store=True, |
|
|
|
related='new_journal_id.currency_id', |
|
|
|
string="Company Currency", readonly=True, |
|
|
|
help='Utility field to express amount currency') |
|
|
|
|
|
|
|
amount = fields.Monetary(string="Amount", |
|
|
|
required=True, default=0.0, |
|
|
|
currency_field='company_currency_id') |
|
|
|
comodel_name='res.currency', store=True, |
|
|
|
related='new_journal_id.currency_id', |
|
|
|
string="Company Currency", readonly=True, |
|
|
|
help='Utility field to express amount currency' |
|
|
|
) |
|
|
|
|
|
|
|
amount = fields.Monetary( |
|
|
|
string="Amount", |
|
|
|
required=True, default=0.0, |
|
|
|
currency_field='company_currency_id' |
|
|
|
) |
|
|
|
|
|
|
|
@api.model |
|
|
|
def _domain_new_journal_id(self): |
|
|
|