Skip to content

Commit

Permalink
Released new version 14.0.0.7
Browse files Browse the repository at this point in the history
Fixed issue of Order API when using it with fees. When using fees,
Order API was skipped by error due to float vat amount.
  • Loading branch information
odoo-mvds committed Jun 7, 2021
1 parent 8545830 commit 86f87f4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion payment_mollie_official/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

{
'name': 'Mollie Payments',
'version': '14.0.0.6',
'version': '14.0.0.7',
'category': 'eCommerce',
'license': 'LGPL-3',
'author': 'Mollie',
Expand Down
4 changes: 2 additions & 2 deletions payment_mollie_official/models/payment_acquirer.py
Original file line number Diff line number Diff line change
Expand Up @@ -499,10 +499,10 @@ def _mollie_prepare_fees_line(self, transaction):
'currency': transaction.currency_id.name,
'value': "%.2f" % transaction.fees
},
'vatRate': 0,
'vatRate': "%.2f" % 0,
'vatAmount': {
'currency': transaction.currency_id.name,
'value': 0,
'value': "%.2f" % 0,
}
}

Expand Down
9 changes: 9 additions & 0 deletions payment_mollie_official/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,15 @@ <h1 style="color: #000;font-weight: bold;/* font-size: 50px; */" class="mt-5 tex
<span style="width:73px;height: 10px;display:inline-block;border-radius: 4px;background-color: #0077ff;"> </span>
</div>

<div class="card mx-auto w-md-75">
<div class="card-header bg-200">
<h4 class="m-0">v14.0.0.7</h4>
</div>
<div class="card-body">
<div> <b class="text-danger"> FIX </b> Fixed issue of Order API when using it with fees. </div>
</div>
</div>

<div class="card mx-auto w-md-75">
<div class="card-header bg-200">
<h4 class="m-0">v14.0.0.6</h4>
Expand Down

0 comments on commit 86f87f4

Please sign in to comment.