odoo-addon-l10n-it-account-stamp 16.0.1.1.0__py3-none-any.whl → 18.0.1.2.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of odoo-addon-l10n-it-account-stamp might be problematic. Click here for more details.

Files changed (28) hide show
  1. odoo/addons/l10n_it_account_stamp/README.rst +69 -43
  2. odoo/addons/l10n_it_account_stamp/__manifest__.py +2 -2
  3. odoo/addons/l10n_it_account_stamp/data/data.xml +5 -7
  4. odoo/addons/l10n_it_account_stamp/i18n/it.po +108 -143
  5. odoo/addons/l10n_it_account_stamp/i18n/l10n_it_account_stamp.pot +68 -95
  6. odoo/addons/l10n_it_account_stamp/migrations/18.0.1.0.0/noupdate_changes.xml +12 -0
  7. odoo/addons/l10n_it_account_stamp/migrations/18.0.1.0.0/post-migration.py +14 -0
  8. odoo/addons/l10n_it_account_stamp/migrations/18.0.1.0.0/pre-migration.py +77 -0
  9. odoo/addons/l10n_it_account_stamp/migrations/18.0.1.1.0/post-migration.py +17 -0
  10. odoo/addons/l10n_it_account_stamp/models/account_move.py +82 -46
  11. odoo/addons/l10n_it_account_stamp/models/company.py +8 -8
  12. odoo/addons/l10n_it_account_stamp/models/product.py +22 -11
  13. odoo/addons/l10n_it_account_stamp/readme/CONFIGURE.md +5 -5
  14. odoo/addons/l10n_it_account_stamp/readme/CONTRIBUTORS.md +1 -0
  15. odoo/addons/l10n_it_account_stamp/readme/DESCRIPTION.md +4 -3
  16. odoo/addons/l10n_it_account_stamp/readme/ROADMAP.md +7 -0
  17. odoo/addons/l10n_it_account_stamp/readme/USAGE.md +3 -3
  18. odoo/addons/l10n_it_account_stamp/static/description/index.html +57 -33
  19. odoo/addons/l10n_it_account_stamp/tests/test_account_stamp_invoicing.py +115 -27
  20. odoo/addons/l10n_it_account_stamp/views/account_move_report.xml +8 -6
  21. odoo/addons/l10n_it_account_stamp/views/account_move_view.xml +26 -18
  22. odoo/addons/l10n_it_account_stamp/views/company_view.xml +8 -33
  23. odoo/addons/l10n_it_account_stamp/views/product_view.xml +12 -16
  24. {odoo_addon_l10n_it_account_stamp-16.0.1.1.0.dist-info → odoo_addon_l10n_it_account_stamp-18.0.1.2.0.dist-info}/METADATA +73 -46
  25. odoo_addon_l10n_it_account_stamp-18.0.1.2.0.dist-info/RECORD +31 -0
  26. {odoo_addon_l10n_it_account_stamp-16.0.1.1.0.dist-info → odoo_addon_l10n_it_account_stamp-18.0.1.2.0.dist-info}/WHEEL +1 -1
  27. odoo_addon_l10n_it_account_stamp-16.0.1.1.0.dist-info/RECORD +0 -26
  28. {odoo_addon_l10n_it_account_stamp-16.0.1.1.0.dist-info → odoo_addon_l10n_it_account_stamp-18.0.1.2.0.dist-info}/top_level.txt +0 -0
@@ -4,7 +4,6 @@
4
4
  ~ License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl).
5
5
  -->
6
6
  <odoo>
7
-
8
7
  <!-- Form: Invoice Customer -->
9
8
  <record id="account_move_form_stamp" model="ir.ui.view">
10
9
  <field name="name">account.move.form.stamp</field>
@@ -12,49 +11,59 @@
12
11
  <field name="inherit_id" ref="account.view_move_form" />
13
12
  <field name="arch" type="xml">
14
13
  <xpath
15
- expr="//field[@name='invoice_line_ids']/tree/field[@name='sequence']"
14
+ expr="//field[@name='invoice_line_ids']/list/field[@name='sequence']"
16
15
  position="after"
17
16
  >
18
- <field name="is_stamp_line" invisible="1" />
17
+ <field name="is_stamp_line" column_invisible="True" />
19
18
  </xpath>
20
- <xpath expr="//field[@name='invoice_line_ids']/tree" position="attributes">
19
+ <xpath expr="//field[@name='invoice_line_ids']/list" position="attributes">
21
20
  <attribute name="colors">CadetBlue:is_stamp_line==True;</attribute>
22
21
  </xpath>
23
22
  <xpath expr="//group[@id='header_right_group']" position="inside">
24
- <field name="auto_compute_stamp" invisible="1" />
25
- <field name="tax_stamp" string="Tax stamp" invisible="1" />
26
23
  <field
27
- name="manually_apply_tax_stamp"
28
- attrs="{'invisible': [('auto_compute_stamp', '=', True)]}"
24
+ name="l10n_it_account_stamp_auto_compute_stamp_duty"
25
+ invisible="1"
26
+ />
27
+ <field
28
+ name="l10n_it_account_stamp_is_stamp_duty_applied"
29
+ string="Stamp Duty"
30
+ invisible="1"
31
+ />
32
+ <field
33
+ name="l10n_it_account_stamp_manually_apply_stamp_duty"
34
+ invisible="l10n_it_account_stamp_auto_compute_stamp_duty"
35
+ />
36
+ <field
37
+ name="l10n_it_account_stamp_is_stamp_duty_invoice_line_present"
38
+ invisible="1"
29
39
  />
30
- <field name="tax_stamp_line_present" invisible="1" />
31
40
  </xpath>
32
41
  <field name="narration" position="before">
33
42
  <div
34
43
  name="stamp_applicability"
35
- attrs="{'invisible': [('tax_stamp', '=', False)]}"
44
+ invisible="not l10n_it_account_stamp_is_stamp_duty_applied"
36
45
  colspan="2"
37
46
  >
38
47
  <img
39
48
  src="/l10n_it_account_stamp/static/description/icon.png"
40
- alt="Tax stamp"
49
+ alt="Stamp Duty"
41
50
  />
42
51
  <span
43
- attrs="{'invisible': [('tax_stamp_line_present', '=', True)]}"
52
+ invisible="l10n_it_account_stamp_is_stamp_duty_invoice_line_present"
44
53
  >
45
- <span attrs="{'invisible': [('state', 'not in', 'draft')]}">
54
+ <span invisible="state != 'draft'">
46
55
  <button
47
56
  type="object"
48
57
  string="Charge stamp to customer"
49
- name="add_tax_stamp_line"
58
+ name="add_stamp_duty_invoice_line"
50
59
  />
51
60
  </span>
52
- <span attrs="{'invisible': [('state', '=', 'draft')]}">
61
+ <span invisible="state == 'draft'">
53
62
  Stamp can only be charged to customer when invoice is in draft state
54
63
  </span>
55
64
  </span>
56
65
  <span
57
- attrs="{'invisible': [('tax_stamp_line_present', '=', False)]}"
66
+ invisible="not l10n_it_account_stamp_is_stamp_duty_invoice_line_present"
58
67
  >
59
68
  Stamp charged to customer
60
69
  </span>
@@ -66,9 +75,8 @@
66
75
  expr="//form/sheet/notebook/page[@id='invoice_tab']/field/form/sheet/group/field[@name='product_id']"
67
76
  position="after"
68
77
  >
69
- <field name="is_stamp_line" invisible="1" />
78
+ <field name="is_stamp_line" column_invisible="True" />
70
79
  </xpath>
71
80
  </field>
72
81
  </record>
73
-
74
82
  </odoo>
@@ -1,44 +1,19 @@
1
1
  <?xml version="1.0" encoding="utf-8" ?>
2
2
  <odoo>
3
-
4
3
  <record model="ir.ui.view" id="view_account_config_settings_stamp">
5
4
  <field name="name">view_account_config_settings_stamp</field>
6
5
  <field name="model">res.config.settings</field>
7
6
  <field name="inherit_id" ref="account.res_config_settings_view_form" />
8
7
  <field name="arch" type="xml">
9
- <div id="eu_service" position="after">
10
- <div
11
- class="col-12 col-lg-6 o_setting_box"
12
- title="Configuration for Tax stamp"
8
+ <block name="default_taxes_setting_container" position="inside">
9
+ <setting
10
+ id="l10n_it_account_stamp_stamp_product"
11
+ title="Configuration for stamp duty"
12
+ company_dependent="1"
13
13
  >
14
- <div class="o_setting_left_pane" />
15
- <div class="o_setting_right_pane">
16
- <span class="o_form_label">Configuration for Tax stamp
17
- </span>
18
- <span
19
- class="fa fa-lg fa-building-o"
20
- title="Values set here are company-specific."
21
- aria-label="Values set here are company-specific."
22
- groups="base.group_multi_company"
23
- role="img"
24
- />
25
- <div class="text-muted">
26
- Product used as Tax Stamp in customer invoices
27
- </div>
28
- <div class="content-group">
29
- <div class="row mt16">
30
- <label
31
- string="Tax Stamp Product"
32
- for="tax_stamp_product_id"
33
- class="col-lg-3 o_light_label"
34
- />
35
- <field name="tax_stamp_product_id" />
36
- </div>
37
- </div>
38
- </div>
39
- </div>
40
- </div>
14
+ <field name="l10n_it_account_stamp_stamp_duty_product_id" />
15
+ </setting>
16
+ </block>
41
17
  </field>
42
18
  </record>
43
-
44
19
  </odoo>
@@ -1,33 +1,32 @@
1
1
  <?xml version="1.0" encoding="utf-8" ?>
2
2
  <odoo>
3
-
4
3
  <record id="product_template_form_view_account_stamp" model="ir.ui.view">
5
4
  <field name="name">product.template.form.inherit</field>
6
5
  <field name="model">product.template</field>
7
6
  <field name="inherit_id" ref="account.product_template_form_view" />
8
7
  <field name="arch" type="xml">
9
-
10
8
  <xpath expr="//group[@name='payables']" position="after">
11
- <group string="Tax stamp">
12
- <field name="is_stamp" />
9
+ <group string="Stamp Duty">
10
+ <field name="l10n_it_account_stamp_is_stamp" />
13
11
  <field
14
- name="auto_compute"
15
- attrs="{'invisible': [('is_stamp', '=', False)]}"
12
+ name="l10n_it_account_stamp_auto_compute"
13
+ invisible="not l10n_it_account_stamp_is_stamp"
16
14
  />
17
15
  <p
18
- attrs="{'invisible': ['|',('auto_compute', '=', False), ('is_stamp', '=', False)]}"
16
+ invisible="(not l10n_it_account_stamp_auto_compute) or (not l10n_it_account_stamp_is_stamp)"
19
17
  colspan="2"
20
18
  >
21
19
  For each invoice, the base amount for each selected tax will be added up and used to determine
22
20
  the application of the account stamp.
23
21
  </p>
24
22
  <field
25
- name="stamp_apply_min_total_base"
26
- attrs="{'invisible': ['|',('auto_compute', '=', False), ('is_stamp', '=', False)], 'required': [('auto_compute', '=', True)]}"
23
+ name="l10n_it_account_stamp_tax_apply_min_total_base"
24
+ invisible="(not l10n_it_account_stamp_auto_compute) or (not l10n_it_account_stamp_is_stamp)"
25
+ required="l10n_it_account_stamp_auto_compute"
27
26
  />
28
27
  <field
29
- name="stamp_apply_tax_ids"
30
- attrs="{'invisible': ['|',('auto_compute', '=', False), ('is_stamp', '=', False)]}"
28
+ name="l10n_it_account_stamp_stamp_duty_apply_tax_ids"
29
+ invisible="(not l10n_it_account_stamp_auto_compute) or (not l10n_it_account_stamp_is_stamp)"
31
30
  widget="many2many_tags"
32
31
  />
33
32
  </group>
@@ -37,19 +36,16 @@
37
36
  expr="//field[@name='property_account_income_id']"
38
37
  position="attributes"
39
38
  >
40
- <attribute name="attrs">{'required': [('is_stamp', '=', True)]}
41
- </attribute>
39
+ <attribute name="required">l10n_it_account_stamp_is_stamp</attribute>
42
40
  </xpath>
43
41
 
44
42
  <xpath
45
43
  expr="//field[@name='property_account_expense_id']"
46
44
  position="attributes"
47
45
  >
48
- <attribute name="attrs">{'required': [('is_stamp', '=', True)]}
46
+ <attribute name="required">l10n_it_account_stamp_is_stamp
49
47
  </attribute>
50
48
  </xpath>
51
-
52
49
  </field>
53
50
  </record>
54
-
55
51
  </odoo>
@@ -1,8 +1,8 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: odoo-addon-l10n_it_account_stamp
3
- Version: 16.0.1.1.0
3
+ Version: 18.0.1.2.0
4
4
  Requires-Python: >=3.10
5
- Requires-Dist: odoo>=16.0a,<16.1dev
5
+ Requires-Dist: odoo==18.0.*
6
6
  Summary: Gestione automatica dell'imposta di bollo
7
7
  Home-page: https://github.com/OCA/l10n-italy
8
8
  License: LGPL-3
@@ -10,8 +10,13 @@ Author: Ermanno Gnan, Sergio Corato, Enrico Ganzaroli, Odoo Community Associatio
10
10
  Author-email: support@odoo-community.org
11
11
  Classifier: Programming Language :: Python
12
12
  Classifier: Framework :: Odoo
13
- Classifier: Framework :: Odoo :: 16.0
13
+ Classifier: Framework :: Odoo :: 18.0
14
14
  Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
15
+ Description-Content-Type: text/x-rst
16
+
17
+ .. image:: https://odoo-community.org/readme-banner-image
18
+ :target: https://odoo-community.org/get-involved?utm_source=readme
19
+ :alt: Odoo Community Association
15
20
 
16
21
  ======================
17
22
  ITA - Imposta di bollo
@@ -22,35 +27,42 @@ ITA - Imposta di bollo
22
27
  !! This file is generated by oca-gen-addon-readme !!
23
28
  !! changes will be overwritten. !!
24
29
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
25
- !! source digest: sha256:a81fbb48d1af1704b5039d1b6239009736a6f4983e7441b65359d85f54064061
30
+ !! source digest: sha256:d29741720c8c8b6a1ad2db28a9979cf34a4cf2868852f58103fe19eaf7c4bd74
26
31
  !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
27
32
 
28
33
  .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
29
34
  :target: https://odoo-community.org/page/development-status
30
35
  :alt: Beta
31
- .. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png
36
+ .. |badge2| image:: https://img.shields.io/badge/license-LGPL--3-blue.png
32
37
  :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
33
38
  :alt: License: LGPL-3
34
39
  .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fl10n--italy-lightgray.png?logo=github
35
- :target: https://github.com/OCA/l10n-italy/tree/16.0/l10n_it_account_stamp
40
+ :target: https://github.com/OCA/l10n-italy/tree/18.0/l10n_it_account_stamp
36
41
  :alt: OCA/l10n-italy
37
42
  .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
38
- :target: https://translation.odoo-community.org/projects/l10n-italy-16-0/l10n-italy-16-0-l10n_it_account_stamp
43
+ :target: https://translation.odoo-community.org/projects/l10n-italy-18-0/l10n-italy-18-0-l10n_it_account_stamp
39
44
  :alt: Translate me on Weblate
40
45
  .. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
41
- :target: https://runboat.odoo-community.org/builds?repo=OCA/l10n-italy&target_branch=16.0
46
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/l10n-italy&target_branch=18.0
42
47
  :alt: Try me on Runboat
43
48
 
44
49
  |badge1| |badge2| |badge3| |badge4| |badge5|
45
50
 
46
51
  **Italiano**
47
52
 
48
- Questo modulo aggiunge il supporto all'imposta di bollo italiana nelle
49
- fatture e nelle ricevute.
53
+ Questo modulo permette di calcolare automaticamente ed addebitare al
54
+ cliente l'imposta di bollo italiana nelle fatture e nelle ricevute
55
+ mantenendo la sincronizzazione con il campo "Dati Bollo"
56
+ (``l10n_it_stamp_duty``) di ``l10n_it_edi``. In questo modo l'elemento
57
+ XML ``<DatiBollo>`` verrà valorizzato correttamente.
50
58
 
51
59
  **English**
52
60
 
53
- This module adds Italian Tax Stamp support in invoices and receipts.
61
+ This module allows to automatically compute and charge the Italian stamp
62
+ duty to customers in invoices and receipts while maintaining
63
+ synchronization with the "Stamp Duty Data" field
64
+ (``l10n_it_stamp_duty``) of ``l10n_it_edi``. In this way XML tag
65
+ ``<DatiBollo>`` will be correctly set.
54
66
 
55
67
  **Table of contents**
56
68
 
@@ -72,27 +84,27 @@ necessario abilitare le funzioni complete per la contabilità:
72
84
 
73
85
  Modalità automatica:
74
86
 
75
- - andare sul prodotto "Imposta di bollo 2 euro" e configurare "Imposte
76
- marca da bollo" (Imposte in esenzione).
77
- - per ciascuna fattura o ricevuta, l'applicabilità dell'imposta di
78
- bollo verrà calcolata in modo automatico in base alla somma degli
79
- imponibili relativi alle imposte selezionate.
87
+ - andare sul prodotto "Imposta di bollo 2 euro" e configurare "Imposte
88
+ per bollo" (Imposte in esenzione).
89
+ - per ciascuna fattura o ricevuta, l'applicabilità dell'imposta di bollo
90
+ verrà calcolata in modo automatico in base alla somma degli imponibili
91
+ relativi alle imposte selezionate.
80
92
 
81
93
  Modalità manuale:
82
94
 
83
- - andare sul prodotto "Imposta di bollo 2 euro" e deselezionare la
84
- casella "Calcolo automatico".
85
- - per ciascuna fattura o ricevuta, abilitare manualmente la casella di
86
- selezione "Imposta di bollo". L'applicabilità dell'imposta di bollo
87
- verrà calcolata in base alla somma degli imponibili relativi alle
88
- imposte selezionate.
95
+ - andare sul prodotto "Imposta di bollo 2 euro" e deselezionare la
96
+ casella "Calcolo automatico".
97
+ - per ciascuna fattura o ricevuta, abilitare manualmente la casella di
98
+ selezione "Imposta di bollo". L'applicabilità dell'imposta di bollo
99
+ verrà calcolata in base alla somma degli imponibili relativi alle
100
+ imposte selezionate.
89
101
 
90
102
  Impostare i conti di ricavo/costo nella scheda "Contabilità",
91
103
  generalmente ricavo="Debiti per bolli" e costo="Valori bollati".
92
104
 
93
105
  **English**
94
106
 
95
- In order to change Tax Stamp 2 euro product settings, enable full
107
+ In order to change 'Stamp duty 2 euro' product settings, enable full
96
108
  accounting features:
97
109
 
98
110
  1. Settings -> Users & Companies -> Groups
@@ -101,17 +113,17 @@ accounting features:
101
113
 
102
114
  Automatic mode:
103
115
 
104
- - Go to 'Tax Stamp 2 euro' product and configure 'Stamp taxes'
105
- (exemption taxes).
106
- - For each invoice or receipt, the base amount for each selected tax
107
- will be added up and used to determine the application of the account
108
- stamp.
116
+ - Go to 'Stamp duty 2 euro' product and configure 'Stamp taxes'
117
+ (exemption taxes).
118
+ - For each invoice or receipt, the base amount for each selected tax
119
+ will be added up and used to determine the application of the account
120
+ stamp.
109
121
 
110
122
  Manual mode:
111
123
 
112
- - Go to 'Tax Stamp 2 euro' product and deselect 'Auto-compute'
113
- checkbox.
114
- - For each invoice or receipt, manually enable 'Tax Stamp' checkbox.
124
+ - Go to 'Stamp duty 2 euro' product and deselect 'Auto-compute'
125
+ checkbox.
126
+ - For each invoice or receipt, manually enable 'Stamp Duty' checkbox.
115
127
 
116
128
  Also set income/expense accounts, typically income = 'Debiti per bolli'
117
129
  and expense = 'Valori bollati'.
@@ -130,19 +142,32 @@ verrà addebitata al cliente.
130
142
 
131
143
  **English**
132
144
 
133
- In invoice or receipt form, when applicable, click 'Add tax stamp line'
134
- button to add tax stamp as invoice line, thus charging customer.
145
+ In invoice or receipt form, when applicable, click 'Add stamp duty line'
146
+ button to add stamp duty as invoice line, thus charging customer.
135
147
 
136
- Otherwise, tax stamp will be anyway accounted, without charging
148
+ Otherwise, stamp duty will be anyway accounted, without charging
137
149
  customer.
138
150
 
151
+ Known issues / Roadmap
152
+ ======================
153
+
154
+ \*\* Italiano \*\*
155
+
156
+ Sono stati aggiunti gli script di migrazione, da provare quando saranno
157
+ rilasciati quelli relativi ad ``account``.
158
+
159
+ \*\* English \*\*
160
+
161
+ Migration scripts have been added, to be tested when ``account`` related
162
+ ones will be released.
163
+
139
164
  Bug Tracker
140
165
  ===========
141
166
 
142
167
  Bugs are tracked on `GitHub Issues <https://github.com/OCA/l10n-italy/issues>`_.
143
168
  In case of trouble, please check there if your issue has already been reported.
144
169
  If you spotted it first, help us to smash it by providing a detailed and welcomed
145
- `feedback <https://github.com/OCA/l10n-italy/issues/new?body=module:%20l10n_it_account_stamp%0Aversion:%2016.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
170
+ `feedback <https://github.com/OCA/l10n-italy/issues/new?body=module:%20l10n_it_account_stamp%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
146
171
 
147
172
  Do not contact contributors directly about support or help with technical issues.
148
173
 
@@ -159,17 +184,19 @@ Authors
159
184
  Contributors
160
185
  ------------
161
186
 
162
- - Lorenzo Battistini <https://github.com/eLBati>
163
- - Sergio Corato
164
- - Ermanno Gnan
165
- - Enrico Ganzaroli
166
- - Sergio Zanchetta <https://github.com/primes2h>
167
- - Marco Colombo <https://github.com/TheMule71>
168
- - Gianmarco Conte <gconte@dinamicheaziendali.it>
169
- - Giovanni Serra <giovanni@gslab.it>
170
- - `Aion Tech <https://aiontech.company/>`__:
187
+ - Lorenzo Battistini <https://github.com/eLBati>
188
+ - Sergio Corato
189
+ - Ermanno Gnan
190
+ - Enrico Ganzaroli
191
+ - Sergio Zanchetta <https://github.com/primes2h>
192
+ - Marco Colombo <https://github.com/TheMule71>
193
+ - Gianmarco Conte <gconte@dinamicheaziendali.it>
194
+ - Giovanni Serra <giovanni@gslab.it>
195
+ - `Aion Tech <https://aiontech.company/>`__:
196
+
197
+ - Simone Rubino <simone.rubino@aion-tech.it>
171
198
 
172
- - Simone Rubino <simone.rubino@aion-tech.it>
199
+ - `Nextev Srl <https://www.nextev.it>`__
173
200
 
174
201
  Maintainers
175
202
  -----------
@@ -184,6 +211,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
184
211
  mission is to support the collaborative development of Odoo features and
185
212
  promote its widespread use.
186
213
 
187
- This module is part of the `OCA/l10n-italy <https://github.com/OCA/l10n-italy/tree/16.0/l10n_it_account_stamp>`_ project on GitHub.
214
+ This module is part of the `OCA/l10n-italy <https://github.com/OCA/l10n-italy/tree/18.0/l10n_it_account_stamp>`_ project on GitHub.
188
215
 
189
216
  You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
@@ -0,0 +1,31 @@
1
+ odoo/addons/l10n_it_account_stamp/README.rst,sha256=Dy-H75LlBVFTPCRKvJT2B2ptg3y39eZJRNKD7lBD3Cs,6760
2
+ odoo/addons/l10n_it_account_stamp/__init__.py,sha256=I-UsDedt5Yu5h6YsECfkEkBOa9D7HC0Fh_CU937Zu38,87
3
+ odoo/addons/l10n_it_account_stamp/__manifest__.py,sha256=woSqyr20jG4Mpj6loQmwP5oLE6a_tvbgNRSej-vhOfY,1059
4
+ odoo/addons/l10n_it_account_stamp/data/data.xml,sha256=MhvW0YkctLZiKGBbu_5jqNkRhDlXNG_hXrak9RQHuUo,1094
5
+ odoo/addons/l10n_it_account_stamp/i18n/it.po,sha256=h3VMfa__nJVZ1QVa2gBrPd8VLGNBXuQG2LfPs9Rtho8,10670
6
+ odoo/addons/l10n_it_account_stamp/i18n/l10n_it_account_stamp.pot,sha256=xTfqIhx4QGqoVyc68jQkFqzGX65YTSUze9ROOTh_e7c,8628
7
+ odoo/addons/l10n_it_account_stamp/migrations/18.0.1.0.0/noupdate_changes.xml,sha256=OpJK3JV1HX1N2FyR2i6hu3hhCRYGJaCrYGQ6TZmWf8E,421
8
+ odoo/addons/l10n_it_account_stamp/migrations/18.0.1.0.0/post-migration.py,sha256=BsU-jlcb6lOMCd7WmLf2rhs4Vszvv7o5erHcvDSfCAY,433
9
+ odoo/addons/l10n_it_account_stamp/migrations/18.0.1.0.0/pre-migration.py,sha256=vW7ZEsx0R7omyDgqFr_Wnuc7MuaqKNq9g0sUOsvKWDQ,2287
10
+ odoo/addons/l10n_it_account_stamp/migrations/18.0.1.1.0/post-migration.py,sha256=FYFeo6p50V83n9IX543pRFbBMt8yvI7S4a1rZbyUzAA,425
11
+ odoo/addons/l10n_it_account_stamp/models/__init__.py,sha256=VsCLpIwj3dfslYgxeQVnrRaP8UYXOcLxzerxw9b9sFM,137
12
+ odoo/addons/l10n_it_account_stamp/models/account_move.py,sha256=9Evbr1licfjzcbzAwcMbPV1NWjnaejbeYdbqgP-6NVQ,9421
13
+ odoo/addons/l10n_it_account_stamp/models/company.py,sha256=I5MlCiNrEyRpwWX2WE6Ic6DOUCcQSPlFtUIRioZhgRc,742
14
+ odoo/addons/l10n_it_account_stamp/models/product.py,sha256=HAI9kpd4cZ_HoN1h0HLny4-CrDnJhr1-_yFT7ucrjVw,1339
15
+ odoo/addons/l10n_it_account_stamp/readme/CONFIGURE.md,sha256=RmmbbhkW6tQMDqd4ivSzFmwtdr3Btz3lmvMvR__wIXI,1905
16
+ odoo/addons/l10n_it_account_stamp/readme/CONTRIBUTORS.md,sha256=ILYy_CY7q6ew2p9YaHOl1E6yX-axzIk9yoAROYcRJ7s,432
17
+ odoo/addons/l10n_it_account_stamp/readme/DESCRIPTION.md,sha256=FDqWrmnvQtAUHyc9URoDZZIeHiIl49Q-v2AIqkEmji8,620
18
+ odoo/addons/l10n_it_account_stamp/readme/ROADMAP.md,sha256=Vxt80XPvr1M0GN7RYs7FK7_bJq7-4h1xT7rpTRYOx0U,239
19
+ odoo/addons/l10n_it_account_stamp/readme/USAGE.md,sha256=hwH13xYIEimvkJEjcOzTsj-mQDbvRGMouwuTNJA5c1g,532
20
+ odoo/addons/l10n_it_account_stamp/static/description/icon.png,sha256=usHO6eloiDtrFBKGx4Bz_wpruwZYZYq6EcMdePNf3k0,13940
21
+ odoo/addons/l10n_it_account_stamp/static/description/index.html,sha256=QXl-lDlQvK-R0LgGogsPVvq8dK_NAmc-cVxd_kBp610,18062
22
+ odoo/addons/l10n_it_account_stamp/tests/__init__.py,sha256=WJD_Fmau2vDl9KNayDUsi2kw1PiU9D3OvonXLmiw3_4,43
23
+ odoo/addons/l10n_it_account_stamp/tests/test_account_stamp_invoicing.py,sha256=zL9l7Ox6d6ADkDwfjRQhvIo5hVvzx_e4TafYZfHwbAQ,7884
24
+ odoo/addons/l10n_it_account_stamp/views/account_move_report.xml,sha256=Yfi10juZ7F7EAovQEdemkKybIq5kJUsBCQ-CUHbVyKU,619
25
+ odoo/addons/l10n_it_account_stamp/views/account_move_view.xml,sha256=7veIlyguQdO7NOsi3xy9rjfAulRCF-pHBXAStBU7WwY,3475
26
+ odoo/addons/l10n_it_account_stamp/views/company_view.xml,sha256=pn0LTKJgmuC0K809N9hczp9nAafy5EU7hlsbQ9zzexI,812
27
+ odoo/addons/l10n_it_account_stamp/views/product_view.xml,sha256=dufET6GNsx25w-HIM9N6b18YC-72exQIngwHef66GUs,2335
28
+ odoo_addon_l10n_it_account_stamp-18.0.1.2.0.dist-info/METADATA,sha256=xpy-F2h1Trd2nk9zopyAS2bXAJLw-pcfaKRDGijJZVQ,7368
29
+ odoo_addon_l10n_it_account_stamp-18.0.1.2.0.dist-info/WHEEL,sha256=ZhOvUsYhy81Dx67gN3TV0RchQWBIIzutDZaJODDg2Vo,81
30
+ odoo_addon_l10n_it_account_stamp-18.0.1.2.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
31
+ odoo_addon_l10n_it_account_stamp-18.0.1.2.0.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: Whool 1.0.1
2
+ Generator: Whool 1.3
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,26 +0,0 @@
1
- odoo/addons/l10n_it_account_stamp/README.rst,sha256=Nrm1Y3lCiZEKy-57aMxio-eT-VGchGlGWOFxTzWUTtE,5841
2
- odoo/addons/l10n_it_account_stamp/__init__.py,sha256=I-UsDedt5Yu5h6YsECfkEkBOa9D7HC0Fh_CU937Zu38,87
3
- odoo/addons/l10n_it_account_stamp/__manifest__.py,sha256=_ftjhRiDTsjwDtF3GnH6xftCpFGrx7kx7xsaE04_qzI,1055
4
- odoo/addons/l10n_it_account_stamp/data/data.xml,sha256=uq1eHcR_s_XAeDO-sr3Tz1J6WpVyXootOruwCnVcYtU,1008
5
- odoo/addons/l10n_it_account_stamp/i18n/it.po,sha256=5QKS-ncusdObP5_Qjk50JeWv45D8Smm-8lFRHmcyOAk,11274
6
- odoo/addons/l10n_it_account_stamp/i18n/l10n_it_account_stamp.pot,sha256=scExBeZeWD4S7flbtMhiEpgPIrnIZiVx5gf8hGoOK1s,9351
7
- odoo/addons/l10n_it_account_stamp/models/__init__.py,sha256=VsCLpIwj3dfslYgxeQVnrRaP8UYXOcLxzerxw9b9sFM,137
8
- odoo/addons/l10n_it_account_stamp/models/account_move.py,sha256=Ll5HtCCG_GsW2TNWdFbRymz9UBSt3cHWp1BVZuM-Zro,7591
9
- odoo/addons/l10n_it_account_stamp/models/company.py,sha256=8obbjHTXRDlNVIUYpn07NrqSafeUTAl_gwZqz52zlbM,649
10
- odoo/addons/l10n_it_account_stamp/models/product.py,sha256=wCy8gqUUQpYMcEUqeYaHDkSRfFUoOivPzNJdrGsdZG0,960
11
- odoo/addons/l10n_it_account_stamp/readme/CONFIGURE.md,sha256=6eXG4dtfCM46GOuBDBYvDSOJSjjhCbcelH1tLmOAaKg,1904
12
- odoo/addons/l10n_it_account_stamp/readme/CONTRIBUTORS.md,sha256=ZFlw2V8ugb5pYxmVwllBv1BDtr6O7Mn5gsUKH2C1UT4,394
13
- odoo/addons/l10n_it_account_stamp/readme/DESCRIPTION.md,sha256=MZtNAxqCRWj_8i_faDkfxl1Tq0Z_Fmb24WuVHhUvzh4,194
14
- odoo/addons/l10n_it_account_stamp/readme/USAGE.md,sha256=gyGCxwwWF5KAjDMFJsTmSGuLNrDB4NvPhYf_9GL40J0,529
15
- odoo/addons/l10n_it_account_stamp/static/description/icon.png,sha256=usHO6eloiDtrFBKGx4Bz_wpruwZYZYq6EcMdePNf3k0,13940
16
- odoo/addons/l10n_it_account_stamp/static/description/index.html,sha256=uaCC9sGFa7ERSmTmClydipZoRK8WM16WuUGr2c1PcQ8,16541
17
- odoo/addons/l10n_it_account_stamp/tests/__init__.py,sha256=WJD_Fmau2vDl9KNayDUsi2kw1PiU9D3OvonXLmiw3_4,43
18
- odoo/addons/l10n_it_account_stamp/tests/test_account_stamp_invoicing.py,sha256=qWDruISZTSzLQiW-YWvAlRpaPhIukQG4Hz8WrcZbXMQ,4467
19
- odoo/addons/l10n_it_account_stamp/views/account_move_report.xml,sha256=WDoJ05BV_oedIbnCaXLBOUzhMYKTudWhXN3iHuxdq98,513
20
- odoo/addons/l10n_it_account_stamp/views/account_move_view.xml,sha256=-qqppLtUH3yS7kxELVpFLHhaJWvwt1d6gZRHA6Zo8MY,3162
21
- odoo/addons/l10n_it_account_stamp/views/company_view.xml,sha256=0pVaJhvcmheticPs13chNXrNPZj6oC5I3oDn5AYfwy8,1931
22
- odoo/addons/l10n_it_account_stamp/views/product_view.xml,sha256=rt1Jo9-PcUI9DFHbz_PVLYkhrZV50qL9k86Ze1S4rV0,2225
23
- odoo_addon_l10n_it_account_stamp-16.0.1.1.0.dist-info/METADATA,sha256=rmZ3F71ovkpFo71j4bUQqxt8dr6C-rAfwWjY7IH-7AM,6420
24
- odoo_addon_l10n_it_account_stamp-16.0.1.1.0.dist-info/WHEEL,sha256=8Rd4enx1PCuyDWP4SABqO5Fv8rpaknqp3VzjoFFLa6c,83
25
- odoo_addon_l10n_it_account_stamp-16.0.1.1.0.dist-info/top_level.txt,sha256=QE6RBQ0QX5f4eFuUcGgU5Kbq1A_qJcDs-e_vpr6pmfU,4
26
- odoo_addon_l10n_it_account_stamp-16.0.1.1.0.dist-info/RECORD,,