Skip to content

Commit

Permalink
[MIG] account_credit_control_dunning_fees: Migration to 12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
TDu committed Jun 19, 2019
1 parent e84c23e commit 944bf21
Show file tree
Hide file tree
Showing 12 changed files with 23 additions and 94 deletions.
86 changes: 0 additions & 86 deletions account_credit_control_dunning_fees/README.rst

This file was deleted.

3 changes: 1 addition & 2 deletions account_credit_control_dunning_fees/__manifest__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# -*- coding: utf-8 -*-
{'name': 'Credit control dunning fees',
'version': '10.0.1.0.0',
'version': '12.0.1.0.0',
'author': "Camptocamp, Odoo Community Association (OCA)",
'maintainer': 'Camptocamp',
'category': 'Accounting',
Expand Down
1 change: 0 additions & 1 deletion account_credit_control_dunning_fees/model/dunning.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import models, api
Expand Down
1 change: 0 additions & 1 deletion account_credit_control_dunning_fees/model/line.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import models, fields, api
Expand Down
1 change: 0 additions & 1 deletion account_credit_control_dunning_fees/model/policy.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import models, fields
Expand Down
1 change: 0 additions & 1 deletion account_credit_control_dunning_fees/model/run.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import models, api
Expand Down
9 changes: 9 additions & 0 deletions account_credit_control_dunning_fees/readme/CONFIGURE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
You can specifiy a fixed fees amount, a product and a currency
on the credit control level form.

The amount will be used as fees values the currency will determine
the currency of the fee. If the credit control line has not the
same currency as the fees currency, fees will be converted to
the credit control line currency.

The product is used to compute taxes in reconciliation process.
4 changes: 4 additions & 0 deletions account_credit_control_dunning_fees/readme/CONTRIBUTORS.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* Nicolas Bessi (Camptocamp)
* Guewen Baconnier <guewen.baconnier@camptocamp.com>
* Adrien Peiffer (acsone)
* Akim Juillerat <akim.juillerat@camptocamp.com>
2 changes: 2 additions & 0 deletions account_credit_control_dunning_fees/readme/DESCRIPTION.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
This module extends the functionality of account_credit_control to add
the notion of dunning fees on credit control lines.
7 changes: 7 additions & 0 deletions account_credit_control_dunning_fees/readme/USAGE.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Fees are automatically computed on credit run and saved
on the generated credit lines.

Fees can be manually edited as long credit line is draft

Credit control Summary report includes a new fees column:
Support of fees price list
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo.tests import common
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# -*- coding: utf-8 -*-
# Copyright 2014-2017 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import models, api
Expand Down

0 comments on commit 944bf21

Please sign in to comment.