Skip to content

Commit

Permalink
[MIG] rename account_invoice_base_invoicing_mode
Browse files Browse the repository at this point in the history
  • Loading branch information
TDu committed Sep 30, 2022
1 parent c0264ea commit 68c66cd
Show file tree
Hide file tree
Showing 21 changed files with 17 additions and 107 deletions.

This file was deleted.

7 changes: 0 additions & 7 deletions account_invoice_base_invoicing_mode/readme/ROADMAP.rst

This file was deleted.

File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Copyright 2020 Camptocamp
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
{
"name": "Account Invoice Base Invoicing Mode",
"name": "Partner Invoicing Mode",
"version": "15.0.1.0.0",
"summary": "Base module for handling multiple invoicing mode",
"summary": "Base module for handling multiple partner invoicing mode",
"author": "Camptocamp, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/account-invoicing",
"license": "AGPL-3",
Expand Down
11 changes: 11 additions & 0 deletions partner_invoicing_mode/migrations/15.0.1.0.0/pre-migrate.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Copyright 2022 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html)

from openupgradelib import openupgrade


@openupgrade.migrate(use_env=True)
def migrate(env, version):
openupgrade.update_module_names(
env.cr, [("account_invoice_base_invoicing_mode", "partner_invoicing_mode")]
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ But it serves no purpose installed on its own.

The following modules use it to install specific invoicing mode :

* `account_invoice_mode_at_shipping`
* `account_invoice_mode_monthly`
* `partner_invoicing_mode_at_shipping`
* `partner_invoicing_mode_monthly`
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<field name="inherit_id" ref="account.view_partner_property_form" />
<field name="arch" type="xml">
<xpath expr="//page[@name='accounting']/group" position="inside">
<group name="invoicing_mode">
<group name="invoicing_mode" string="Invoicing Mode">
<field name="invoicing_mode" />
<field name="one_invoice_per_order" />
</group>
Expand Down

This file was deleted.

File renamed without changes.

0 comments on commit 68c66cd

Please sign in to comment.