From ef4067231c80cc7d2a177424257af040e6649f53 Mon Sep 17 00:00:00 2001 From: AaronHForgeFlow Date: Mon, 31 Aug 2020 16:38:07 +0200 Subject: [PATCH] [UPT]customer_outstanding_statement standard name is Aging Statement --- customer_outstanding_statement/README.rst | 10 +++++----- customer_outstanding_statement/__manifest__.py | 2 +- .../report/customer_outstanding_statement.py | 2 +- .../static/description/index.html | 4 ++-- .../tests/test_customer_outstanding_statement.py | 4 ++-- customer_outstanding_statement/views/statement.xml | 4 ++-- .../wizard/customer_outstanding_statement_wizard.py | 4 ++-- .../wizard/customer_outstanding_statement_wizard.xml | 4 ++-- 8 files changed, 17 insertions(+), 17 deletions(-) diff --git a/customer_outstanding_statement/README.rst b/customer_outstanding_statement/README.rst index 4455e4bf..59a709d6 100644 --- a/customer_outstanding_statement/README.rst +++ b/customer_outstanding_statement/README.rst @@ -2,11 +2,11 @@ :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 -==================================== -Print Customer Outstanding Statement -==================================== +===================== +Print Aging Statement +===================== -The outstanding statement provides details of all outstanding customer receivables +The aging statement provides details of all outstanding customer receivables up to a particular date. This includes all unpaid invoices, unclaimed refunds and outstanding payments. The list is displayed in chronological order and is split by currencies. @@ -27,7 +27,7 @@ Usage To use this module, you need to: #. Go to Customers and select one or more -#. Press 'Action > Customer Outstanding Statement' +#. Press 'Action > Aging Statement' #. Indicate if you want to display aging buckets diff --git a/customer_outstanding_statement/__manifest__.py b/customer_outstanding_statement/__manifest__.py index b5e5fdf5..63259b7a 100644 --- a/customer_outstanding_statement/__manifest__.py +++ b/customer_outstanding_statement/__manifest__.py @@ -4,7 +4,7 @@ # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { - 'name': 'Customer Outstanding Statement', + 'name': 'Aging Statement', 'version': '10.0.1.1.0', 'category': 'Accounting & Finance', 'summary': 'OCA Financial Reports', diff --git a/customer_outstanding_statement/report/customer_outstanding_statement.py b/customer_outstanding_statement/report/customer_outstanding_statement.py index 1caae334..e1ab90bf 100644 --- a/customer_outstanding_statement/report/customer_outstanding_statement.py +++ b/customer_outstanding_statement/report/customer_outstanding_statement.py @@ -9,7 +9,7 @@ from odoo import api, fields, models class CustomerOutstandingStatement(models.AbstractModel): - """Model of Customer Outstanding Statement""" + """Model of Aging Statement""" _name = 'report.customer_outstanding_statement.statement' diff --git a/customer_outstanding_statement/static/description/index.html b/customer_outstanding_statement/static/description/index.html index 9c3d2c94..7962b7a9 100644 --- a/customer_outstanding_statement/static/description/index.html +++ b/customer_outstanding_statement/static/description/index.html @@ -1,7 +1,7 @@
-

Customer Outstanding Statement

+

Aging Statement

@@ -43,7 +43,7 @@ due, ...), so the customer can review how much is open, due or overdue.

To use this module, you need to:
  • Go to Customers and select one or more
  • -
  • Press 'Action > Customer Outstanding Statement'
  • +
  • Press 'Action > Aging Statement'
  • Indicate if you want to display aging buckets

diff --git a/customer_outstanding_statement/tests/test_customer_outstanding_statement.py b/customer_outstanding_statement/tests/test_customer_outstanding_statement.py index dade9546..342d5b2f 100644 --- a/customer_outstanding_statement/tests/test_customer_outstanding_statement.py +++ b/customer_outstanding_statement/tests/test_customer_outstanding_statement.py @@ -8,7 +8,7 @@ from odoo.tests.common import TransactionCase class TestCustomerOutstandingStatement(TransactionCase): """ - Tests for Customer Outstanding Statement. + Tests for Aging Statement. """ def setUp(self): super(TestCustomerOutstandingStatement, self).setUp() @@ -26,7 +26,7 @@ class TestCustomerOutstandingStatement(TransactionCase): self.env['report.customer_outstanding_statement.statement'] self.wiz = self.env['customer.outstanding.statement.wizard'] self.report_name = 'customer_outstanding_statement.statement' - self.report_title = 'Customer Outstanding Statement' + self.report_title = 'Aging Statement' def _create_user(self, login, groups, company): group_ids = [group.id for group in groups] diff --git a/customer_outstanding_statement/views/statement.xml b/customer_outstanding_statement/views/statement.xml index 07b55ccc..d690f13b 100644 --- a/customer_outstanding_statement/views/statement.xml +++ b/customer_outstanding_statement/views/statement.xml @@ -10,7 +10,7 @@

- Outstanding Statement + Aging Statement

Date:
@@ -22,7 +22,7 @@

- Outstanding Statement at in : + Aging Statement at in :

diff --git a/customer_outstanding_statement/wizard/customer_outstanding_statement_wizard.py b/customer_outstanding_statement/wizard/customer_outstanding_statement_wizard.py index 5fd8f468..2ce2079e 100644 --- a/customer_outstanding_statement/wizard/customer_outstanding_statement_wizard.py +++ b/customer_outstanding_statement/wizard/customer_outstanding_statement_wizard.py @@ -8,10 +8,10 @@ from odoo import api, fields, models class CustomerOutstandingStatementWizard(models.TransientModel): - """Customer Outstanding Statement wizard.""" + """Aging Statement wizard.""" _name = 'customer.outstanding.statement.wizard' - _description = 'Customer Outstanding Statement Wizard' + _description = 'Aging Statement Wizard' company_id = fields.Many2one( comodel_name='res.company', diff --git a/customer_outstanding_statement/wizard/customer_outstanding_statement_wizard.xml b/customer_outstanding_statement/wizard/customer_outstanding_statement_wizard.xml index aac6bc8f..e92996e7 100644 --- a/customer_outstanding_statement/wizard/customer_outstanding_statement_wizard.xml +++ b/customer_outstanding_statement/wizard/customer_outstanding_statement_wizard.xml @@ -2,7 +2,7 @@ - Customer Outstanding Statement Wizard + Aging Statement Wizard customer.outstanding.statement.wizard