Browse Source

more fix pyilint

pull/519/head
Florent THOMAS 4 years ago
parent
commit
150a76e9ab
  1. 9
      pos_payment_change/wizards/pos_payment_change_wizard_new_line.py
  2. 10
      pos_payment_change/wizards/pos_payment_change_wizard_old_line.py

9
pos_payment_change/wizards/pos_payment_change_wizard_new_line.py

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

10
pos_payment_change/wizards/pos_payment_change_wizard_old_line.py

@ -24,8 +24,12 @@ class PosPaymentChangeWizardOldLine(models.TransientModel):
comodel_name='res.currency', store=True,
related='old_journal_id.currency_id',
string="Company Currency", readonly=True,
help='Utility field to express amount currency')
help='Utility field to express amount currency'
)
amount = fields.Monetary(string="Amount", required=True,
amount = fields.Monetary(
string="Amount",
required=True,
readonly=True, default=0.0,
currency_field='company_currency_id')
currency_field='company_currency_id'
)
Loading…
Cancel
Save