mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
[MERGE] account_banking_nl_clieop: amount exported should be expressed in cents and be integer.
This commit is contained in:
@@ -278,7 +278,7 @@ class Transaction(object):
|
||||
self.transaction.transactiontype = type_
|
||||
self.transaction.accountno_beneficiary = accountno_beneficiary
|
||||
self.transaction.accountno_payer = accountno_payer
|
||||
self.transaction.amount = round(amount * 100)
|
||||
self.transaction.amount = int(round(amount * 100))
|
||||
if reference:
|
||||
self.paymentreference.paymentreference = reference
|
||||
# Allow long message lines to redistribute over multiple message
|
||||
|
||||
Reference in New Issue
Block a user