Skip to content

Commit aa6f460

Browse files
[MIG] account_multi_vat: Migration to 15.0
1 parent 4bf57fa commit aa6f460

File tree

4 files changed

+5
-81
lines changed

4 files changed

+5
-81
lines changed

account_multi_vat/__manifest__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"summary": """
77
Allows setting multiple VAT numbers on any partner and select the right one
88
depending on the fiscal position and delivery address of the invoice.""",
9-
"version": "14.0.1.0.0",
9+
"version": "15.0.1.0.0",
1010
"development_status": "Beta",
1111
"license": "AGPL-3",
1212
"author": "ACSONE SA/NV,Odoo Community Association (OCA)",

account_multi_vat/models/account_tax.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class AccountTax(models.Model):
1818
comodel_name="res.country",
1919
related=False,
2020
compute="_compute_country_id",
21-
store=False,
21+
store=True,
2222
readonly=True,
2323
)
2424

account_multi_vat/tests/common.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Copyright 2020 ACSONE SA/NV
22
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
33

4-
from odoo.tests.common import SavepointCase
4+
from odoo.tests.common import TransactionCase
55

66

7-
class CommonAccountMultiVat(SavepointCase):
7+
class CommonAccountMultiVat(TransactionCase):
88
@classmethod
99
def setUpClass(cls):
1010
super(CommonAccountMultiVat, cls).setUpClass()

account_multi_vat/views/report_invoice.xml

+1-77
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
<template
66
id="multi_vat_report_invoice_document"
77
inherit_id="account.report_invoice_document"
8+
priority="99"
89
>
910
<xpath expr="//div[@t-if='o.partner_id.vat']" position="replace">
1011
<div t-if="o.partner_id.has_vat" class="mt16">
@@ -17,81 +18,4 @@
1718
</div>
1819
</xpath>
1920
</template>
20-
<template id="external_layout_multi_vat" inherit_id="web.external_layout_standard">
21-
<xpath
22-
expr="//li[@t-if='company.vat']/span[@t-field='company.vat']"
23-
position="replace"
24-
>
25-
<t
26-
t-if="'fiscal_position_id' in o._fields and o._name == 'account.move' and o.move_type in ['out_invoice', 'out_refund']"
27-
>
28-
<span
29-
t-esc="company.partner_id._get_vat_number_for_administration(o.fiscal_position_id.vat_partner_id)"
30-
/>
31-
</t>
32-
<t t-else="else">
33-
<span t-field="company.vat" />
34-
</t>
35-
</xpath>
36-
</template>
37-
<template
38-
id="external_layout_multi_vat_clean"
39-
inherit_id="web.external_layout_clean"
40-
>
41-
<xpath
42-
expr="//li[@t-if='company.vat']/span[@t-field='company.vat']"
43-
position="replace"
44-
>
45-
<t
46-
t-if="'fiscal_position_id' in o._fields and o._name == 'account.move' and o.move_type in ['out_invoice', 'out_refund']"
47-
>
48-
<span
49-
t-esc="company.partner_id._get_vat_number_for_administration(o.fiscal_position_id.vat_partner_id)"
50-
/>
51-
</t>
52-
<t t-else="else">
53-
<span t-field="company.vat" />
54-
</t>
55-
</xpath>
56-
</template>
57-
<template
58-
id="external_layout_multi_vat_boxed"
59-
inherit_id="web.external_layout_boxed"
60-
>
61-
<xpath
62-
expr="//li[@t-if='company.vat']/span[@t-field='company.vat']"
63-
position="replace"
64-
>
65-
<t
66-
t-if="'fiscal_position_id' in o._fields and o._name == 'account.move' and o.move_type in ['out_invoice', 'out_refund']"
67-
>
68-
<span
69-
t-esc="company.partner_id._get_vat_number_for_administration(o.fiscal_position_id.vat_partner_id)"
70-
/>
71-
</t>
72-
<t t-else="else">
73-
<span t-field="company.vat" />
74-
</t>
75-
</xpath>
76-
</template>
77-
<template
78-
id="external_layout_multi_vat_background"
79-
inherit_id="web.external_layout_background"
80-
>
81-
<xpath
82-
expr="//li[@t-if='company.vat']/span[@t-field='company.vat']"
83-
position="replace"
84-
>
85-
<t
86-
t-if="'fiscal_position_id' in o._fields and o._name == 'account.move' and o.move_type in ['out_invoice', 'out_refund']"
87-
>
88-
<span
89-
t-esc="company.partner_id._get_vat_number_for_administration(o.fiscal_position_id.vat_partner_id)"
90-
/>
91-
</t>
92-
<t t-else="else">
93-
<span t-field="company.vat" />
94-
</t>
95-
</xpath>
96-
</template>
9721
</odoo>

0 commit comments

Comments
 (0)