From c0264eaf01d1179f2fded12b8f0319a7a18846c3 Mon Sep 17 00:00:00 2001 From: Bert Van Groenendael Date: Tue, 14 Dec 2021 11:56:05 +0100 Subject: [PATCH] [MIG] account_invoice_base_invoicing_mode: Migration to 15.0 --- .../__manifest__.py | 2 +- .../data/queue_job_data.xml | 32 +++++++++---------- .../models/res_partner.py | 1 - 3 files changed, 16 insertions(+), 19 deletions(-) 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.", )