|
5 | 5 | <template
|
6 | 6 | id="multi_vat_report_invoice_document"
|
7 | 7 | inherit_id="account.report_invoice_document"
|
| 8 | + priority="99" |
8 | 9 | >
|
9 | 10 | <xpath expr="//div[@t-if='o.partner_id.vat']" position="replace">
|
10 | 11 | <div t-if="o.partner_id.has_vat" class="mt16">
|
|
17 | 18 | </div>
|
18 | 19 | </xpath>
|
19 | 20 | </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> |
97 | 21 | </odoo>
|
0 commit comments