Skip to content

Commit

Permalink
[IMP] account_payment_group_financial_surcharge:
Browse files Browse the repository at this point in the history
Now Surcharge Coefficient on Fincancial plans admid percentages with
decimals.

Ticket: 52240
  • Loading branch information
Maximiliano Mezzavilla authored and zaoral committed Oct 27, 2022
1 parent c7dd825 commit 5d8a378
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion account_payment_group_financial_surcharge/__manifest__.py
@@ -1,6 +1,6 @@
{
"name": "Payment Groups with Financial Surchange",
"version": "13.0.1.1.0",
"version": "13.0.1.2.0",
"author": "ADHOC SA",
"license": "AGPL-3",
"category": "Payment",
Expand Down
Expand Up @@ -15,7 +15,7 @@ class AccountFinancingPlan(models.Model):
default=10,
)
name = fields.Char(required=True)
surcharge_coefficient = fields.Integer(
surcharge_coefficient = fields.Float(
'Surcharge coefficient',
required=True,
)
Expand Down

0 comments on commit 5d8a378

Please sign in to comment.