diff --git a/account_invoice_base_invoicing_mode/__manifest__.py b/account_invoice_base_invoicing_mode/__manifest__.py index 36d31f8e472..bbb2b9ab659 100644 --- a/account_invoice_base_invoicing_mode/__manifest__.py +++ b/account_invoice_base_invoicing_mode/__manifest__.py @@ -2,7 +2,7 @@ # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { "name": "Account Invoice Base Invoicing Mode", - "version": "14.0.1.1.0", + "version": "15.0.1.0.0", "summary": "Base module for handling multiple invoicing mode", "author": "Camptocamp, Odoo Community Association (OCA)", "website": "https://github.com/OCA/account-invoicing", diff --git a/account_invoice_base_invoicing_mode/data/queue_job_data.xml b/account_invoice_base_invoicing_mode/data/queue_job_data.xml index 2b89eb640a4..5dd93d67bc5 100644 --- a/account_invoice_base_invoicing_mode/data/queue_job_data.xml +++ b/account_invoice_base_invoicing_mode/data/queue_job_data.xml @@ -1,21 +1,19 @@ - - - - invoice_validation - - + + + invoice_validation + + - - - - _validate_invoice - - - - + + + + _validate_invoice + + + diff --git a/account_invoice_base_invoicing_mode/models/res_partner.py b/account_invoice_base_invoicing_mode/models/res_partner.py index d2c89434f10..12daffd111e 100644 --- a/account_invoice_base_invoicing_mode/models/res_partner.py +++ b/account_invoice_base_invoicing_mode/models/res_partner.py @@ -9,7 +9,6 @@ class ResPartner(models.Model): invoicing_mode = fields.Selection([("standard", "Standard")], default="standard") one_invoice_per_order = fields.Boolean( - "One invoice per order", default=False, help="Do not group sale order into one invoice.", )