odoo-addon-l10n-br-fiscal 16.0.8.0.2__py3-none-any.whl → 16.0.19.4.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.
Files changed (115) hide show
  1. odoo/addons/l10n_br_fiscal/README.rst +1 -1
  2. odoo/addons/l10n_br_fiscal/__manifest__.py +10 -3
  3. odoo/addons/l10n_br_fiscal/constants/fiscal.py +64 -18
  4. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.cest.csv +1043 -983
  5. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.cst.csv +58 -0
  6. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.document.type.csv +1 -0
  7. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.operation.indicator.csv +27 -0
  8. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.tax.classification.csv +163 -0
  9. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.tax.csv +31 -0
  10. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.tax.group.csv +3 -0
  11. odoo/addons/l10n_br_fiscal/data/operation_data.xml +1 -1
  12. odoo/addons/l10n_br_fiscal/data/uom_data.xml +186 -33
  13. odoo/addons/l10n_br_fiscal/demo/fiscal_document_demo.xml +3 -377
  14. odoo/addons/l10n_br_fiscal/demo/fiscal_document_nfse_demo.xml +0 -12
  15. odoo/addons/l10n_br_fiscal/demo/fiscal_operation_demo.xml +2 -2
  16. odoo/addons/l10n_br_fiscal/i18n/l10n_br_fiscal.pot +902 -304
  17. odoo/addons/l10n_br_fiscal/i18n/pt_BR.po +22 -22
  18. odoo/addons/l10n_br_fiscal/migrations/16.0.13.0.0/pre-migration.py +25 -0
  19. odoo/addons/l10n_br_fiscal/migrations/16.0.14.0.0/pre-migration.py +30 -0
  20. odoo/addons/l10n_br_fiscal/migrations/16.0.14.0.5/pre-migration.py +15 -0
  21. odoo/addons/l10n_br_fiscal/models/__init__.py +3 -2
  22. odoo/addons/l10n_br_fiscal/models/comment.py +2 -2
  23. odoo/addons/l10n_br_fiscal/models/data_ncm_nbs_abstract.py +1 -1
  24. odoo/addons/l10n_br_fiscal/models/document.py +83 -226
  25. odoo/addons/l10n_br_fiscal/models/document_line.py +67 -5
  26. odoo/addons/l10n_br_fiscal/models/document_line_mixin.py +1932 -136
  27. odoo/addons/l10n_br_fiscal/models/document_mixin.py +248 -17
  28. odoo/addons/l10n_br_fiscal/models/document_related.py +11 -8
  29. odoo/addons/l10n_br_fiscal/models/document_serie.py +33 -0
  30. odoo/addons/l10n_br_fiscal/models/ibpt.py +1 -1
  31. odoo/addons/l10n_br_fiscal/models/icms_regulation.py +1 -1
  32. odoo/addons/l10n_br_fiscal/models/invalidate_number.py +4 -5
  33. odoo/addons/l10n_br_fiscal/models/operation_dashboard.py +3 -2
  34. odoo/addons/l10n_br_fiscal/models/operation_indicator.py +58 -0
  35. odoo/addons/l10n_br_fiscal/models/operation_line.py +28 -0
  36. odoo/addons/l10n_br_fiscal/models/partner_profile.py +6 -0
  37. odoo/addons/l10n_br_fiscal/models/product_template.py +5 -1
  38. odoo/addons/l10n_br_fiscal/models/res_company.py +18 -0
  39. odoo/addons/l10n_br_fiscal/models/res_partner.py +27 -6
  40. odoo/addons/l10n_br_fiscal/models/simplified_tax_range.py +8 -0
  41. odoo/addons/l10n_br_fiscal/models/tax.py +7 -3
  42. odoo/addons/l10n_br_fiscal/models/tax_classification.py +81 -0
  43. odoo/addons/l10n_br_fiscal/models/tax_pis_cofins_base.py +1 -1
  44. odoo/addons/l10n_br_fiscal/models/tax_pis_cofins_credit.py +1 -1
  45. odoo/addons/l10n_br_fiscal/models/uom_uom.py +24 -0
  46. odoo/addons/l10n_br_fiscal/security/fiscal_security.xml +6 -16
  47. odoo/addons/l10n_br_fiscal/security/ir.model.access.csv +8 -2
  48. odoo/addons/l10n_br_fiscal/static/description/index.html +1 -1
  49. odoo/addons/l10n_br_fiscal/tests/__init__.py +3 -0
  50. odoo/addons/l10n_br_fiscal/tests/test_document_edition.py +308 -0
  51. odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_generic.py +23 -111
  52. odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py +5 -13
  53. odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_serie.py +60 -0
  54. odoo/addons/l10n_br_fiscal/tests/test_ibpt.py +2 -2
  55. odoo/addons/l10n_br_fiscal/tests/test_icms_regulation.py +2 -2
  56. odoo/addons/l10n_br_fiscal/tests/test_tax_benefit.py +14 -20
  57. odoo/addons/l10n_br_fiscal/tests/test_tax_classification.py +110 -0
  58. odoo/addons/l10n_br_fiscal/tools.py +1 -1
  59. odoo/addons/l10n_br_fiscal/views/cest_view.xml +2 -4
  60. odoo/addons/l10n_br_fiscal/views/cfop_view.xml +3 -5
  61. odoo/addons/l10n_br_fiscal/views/city_taxation_code.xml +1 -4
  62. odoo/addons/l10n_br_fiscal/views/cnae_view.xml +2 -4
  63. odoo/addons/l10n_br_fiscal/views/comment_view.xml +2 -4
  64. odoo/addons/l10n_br_fiscal/views/cst_view.xml +6 -8
  65. odoo/addons/l10n_br_fiscal/views/{document_fiscal_line_mixin_view.xml → document_line_mixin_view.xml} +525 -388
  66. odoo/addons/l10n_br_fiscal/views/document_line_view.xml +101 -82
  67. odoo/addons/l10n_br_fiscal/views/document_related_view.xml +44 -46
  68. odoo/addons/l10n_br_fiscal/views/document_serie_view.xml +2 -6
  69. odoo/addons/l10n_br_fiscal/views/document_type_view.xml +0 -2
  70. odoo/addons/l10n_br_fiscal/views/document_view.xml +304 -346
  71. odoo/addons/l10n_br_fiscal/views/icms_regulation_view.xml +14 -16
  72. odoo/addons/l10n_br_fiscal/views/icms_relief_view.xml +8 -10
  73. odoo/addons/l10n_br_fiscal/views/invalidate_number_view.xml +46 -48
  74. odoo/addons/l10n_br_fiscal/views/l10n_br_fiscal_action.xml +162 -244
  75. odoo/addons/l10n_br_fiscal/views/l10n_br_fiscal_menu.xml +16 -72
  76. odoo/addons/l10n_br_fiscal/views/legal_nature_view.xml +0 -2
  77. odoo/addons/l10n_br_fiscal/views/nbm_view.xml +5 -6
  78. odoo/addons/l10n_br_fiscal/views/nbs_view.xml +5 -6
  79. odoo/addons/l10n_br_fiscal/views/ncm_view.xml +12 -15
  80. odoo/addons/l10n_br_fiscal/views/operation_dashboard_view.xml +13 -12
  81. odoo/addons/l10n_br_fiscal/views/operation_indicator_view.xml +75 -0
  82. odoo/addons/l10n_br_fiscal/views/operation_line_view.xml +22 -21
  83. odoo/addons/l10n_br_fiscal/views/operation_view.xml +3 -6
  84. odoo/addons/l10n_br_fiscal/views/partner_profile_view.xml +3 -6
  85. odoo/addons/l10n_br_fiscal/views/product_genre_view.xml +7 -9
  86. odoo/addons/l10n_br_fiscal/views/product_product_view.xml +37 -14
  87. odoo/addons/l10n_br_fiscal/views/product_template_view.xml +34 -14
  88. odoo/addons/l10n_br_fiscal/views/res_company_view.xml +40 -38
  89. odoo/addons/l10n_br_fiscal/views/res_config_settings_view.xml +23 -28
  90. odoo/addons/l10n_br_fiscal/views/res_partner_view.xml +13 -2
  91. odoo/addons/l10n_br_fiscal/views/service_type_view.xml +7 -8
  92. odoo/addons/l10n_br_fiscal/views/simplified_tax_range_view.xml +0 -2
  93. odoo/addons/l10n_br_fiscal/views/simplified_tax_view.xml +0 -2
  94. odoo/addons/l10n_br_fiscal/views/tax_classification.xml +110 -0
  95. odoo/addons/l10n_br_fiscal/views/tax_definition_view.xml +157 -129
  96. odoo/addons/l10n_br_fiscal/views/tax_estimate_view.xml +0 -2
  97. odoo/addons/l10n_br_fiscal/views/tax_group_view.xml +3 -6
  98. odoo/addons/l10n_br_fiscal/views/tax_ipi_control_seal_view.xml +0 -2
  99. odoo/addons/l10n_br_fiscal/views/tax_ipi_guideline_class_view.xml +0 -2
  100. odoo/addons/l10n_br_fiscal/views/tax_ipi_guideline_view.xml +2 -4
  101. odoo/addons/l10n_br_fiscal/views/tax_pis_cofins_base_view.xml +2 -4
  102. odoo/addons/l10n_br_fiscal/views/tax_pis_cofins_credit_view.xml +2 -4
  103. odoo/addons/l10n_br_fiscal/views/tax_pis_cofins_view.xml +5 -7
  104. odoo/addons/l10n_br_fiscal/views/tax_view.xml +5 -7
  105. odoo/addons/l10n_br_fiscal/views/uom_uom.xml +52 -0
  106. odoo/addons/l10n_br_fiscal/wizards/__init__.py +1 -0
  107. odoo/addons/l10n_br_fiscal/wizards/base_wizard_mixin.py +1 -1
  108. odoo/addons/l10n_br_fiscal/wizards/document_import_wizard_mixin.py +129 -0
  109. odoo/addons/l10n_br_fiscal/wizards/document_import_wizard_mixin.xml +41 -0
  110. {odoo_addon_l10n_br_fiscal-16.0.8.0.2.dist-info → odoo_addon_l10n_br_fiscal-16.0.19.4.0.dist-info}/METADATA +3 -3
  111. {odoo_addon_l10n_br_fiscal-16.0.8.0.2.dist-info → odoo_addon_l10n_br_fiscal-16.0.19.4.0.dist-info}/RECORD +113 -99
  112. {odoo_addon_l10n_br_fiscal-16.0.8.0.2.dist-info → odoo_addon_l10n_br_fiscal-16.0.19.4.0.dist-info}/WHEEL +1 -1
  113. odoo/addons/l10n_br_fiscal/models/document_line_mixin_methods.py +0 -814
  114. odoo/addons/l10n_br_fiscal/models/document_mixin_methods.py +0 -363
  115. {odoo_addon_l10n_br_fiscal-16.0.8.0.2.dist-info → odoo_addon_l10n_br_fiscal-16.0.19.4.0.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
1
1
  <?xml version="1.0" encoding="utf-8" ?>
2
2
  <odoo>
3
-
4
3
  <!-- Operation Dashboard -->
4
+
5
5
  <record id="operation_dashboard_action" model="ir.actions.act_window">
6
6
  <field name="name">Operation Dashboard</field>
7
7
  <field name="res_model">l10n_br_fiscal.operation</field>
@@ -9,13 +9,11 @@
9
9
  <field name="view_id" ref="operation_dashboard_kanban" />
10
10
  <field name="usage">menu</field>
11
11
  <field name="help" type="html">
12
- <p class="o_view_nocontent_neutral_face">
13
- This is the fiscal dashboard
14
- </p>
12
+ <p class="o_view_nocontent_neutral_face">This is the fiscal dashboard</p>
15
13
  </field>
16
14
  </record>
17
-
18
15
  <!-- Legal Nature -->
16
+
19
17
  <record id="legal_nature_action" model="ir.actions.act_window">
20
18
  <field name="name">Legal Nature</field>
21
19
  <field name="type">ir.actions.act_window</field>
@@ -23,16 +21,13 @@
23
21
  <field name="view_mode">tree,form</field>
24
22
  <field name="view_id" ref="legal_nature_tree" />
25
23
  <field name="help" type="html">
26
- <p class="o_view_nocontent_smiling_face">
27
- Add a new Legal Nature
28
- </p><p>
29
- A Legal nature is necessary to determine the
30
- fiscal definitions for your company.
31
- </p>
24
+ <p class="o_view_nocontent_smiling_face">Add a new Legal Nature</p>
25
+ <p
26
+ >A Legal nature is necessary to determine the fiscal definitions for your company.</p>
32
27
  </field>
33
28
  </record>
34
-
35
29
  <!-- CNAE -->
30
+
36
31
  <record id="cnae_action" model="ir.actions.act_window">
37
32
  <field name="name">CNAE</field>
38
33
  <field name="type">ir.actions.act_window</field>
@@ -40,16 +35,13 @@
40
35
  <field name="view_mode">tree,form</field>
41
36
  <field name="view_id" ref="cnae_tree" />
42
37
  <field name="help" type="html">
43
- <p class="o_view_nocontent_smiling_face">
44
- Add a new CNAE
45
- </p><p>
46
- A CNAE is necessary to determine the
47
- fiscal definitions for your company.
48
- </p>
38
+ <p class="o_view_nocontent_smiling_face">Add a new CNAE</p>
39
+ <p
40
+ >A CNAE is necessary to determine the fiscal definitions for your company.</p>
49
41
  </field>
50
42
  </record>
51
-
52
43
  <!-- CFOP -->
44
+
53
45
  <record id="cfop_action" model="ir.actions.act_window">
54
46
  <field name="name">CFOP</field>
55
47
  <field name="type">ir.actions.act_window</field>
@@ -57,16 +49,13 @@
57
49
  <field name="view_mode">tree,form</field>
58
50
  <field name="view_id" ref="cfop_tree" />
59
51
  <field name="help" type="html">
60
- <p class="o_view_nocontent_smiling_face">
61
- Add a new CFOP
62
- </p><p>
63
- A CFOP is necessary to determine the
64
- fiscal operations for your fiscal moves.
65
- </p>
52
+ <p class="o_view_nocontent_smiling_face">Add a new CFOP</p>
53
+ <p
54
+ >A CFOP is necessary to determine the fiscal operations for your fiscal moves.</p>
66
55
  </field>
67
56
  </record>
68
-
69
57
  <!-- CST -->
58
+
70
59
  <record id="cst_action" model="ir.actions.act_window">
71
60
  <field name="name">CST</field>
72
61
  <field name="type">ir.actions.act_window</field>
@@ -74,16 +63,12 @@
74
63
  <field name="view_mode">tree,form</field>
75
64
  <field name="view_id" ref="cst_tree" />
76
65
  <field name="help" type="html">
77
- <p class="o_view_nocontent_smiling_face">
78
- Add a new CST
79
- </p><p>
80
- A CST is necessary to create
81
- fiscal operations for your fiscal moves.
82
- </p>
66
+ <p class="o_view_nocontent_smiling_face">Add a new CST</p>
67
+ <p>A CST is necessary to create fiscal operations for your fiscal moves.</p>
83
68
  </field>
84
69
  </record>
85
-
86
70
  <!-- Tax Group -->
71
+
87
72
  <record id="tax_group_action" model="ir.actions.act_window">
88
73
  <field name="name">Tax Group</field>
89
74
  <field name="type">ir.actions.act_window</field>
@@ -91,16 +76,13 @@
91
76
  <field name="view_mode">tree,form</field>
92
77
  <field name="view_id" ref="tax_group_tree" />
93
78
  <field name="help" type="html">
94
- <p class="o_view_nocontent_smiling_face">
95
- Add a new Tax Group
96
- </p><p>
97
- A Tax Group is necessary to create
98
- fiscal operations for your fiscal moves.
99
- </p>
79
+ <p class="o_view_nocontent_smiling_face">Add a new Tax Group</p>
80
+ <p
81
+ >A Tax Group is necessary to create fiscal operations for your fiscal moves.</p>
100
82
  </field>
101
83
  </record>
102
-
103
84
  <!-- Tax -->
85
+
104
86
  <record id="tax_action" model="ir.actions.act_window">
105
87
  <field name="name">Tax</field>
106
88
  <field name="type">ir.actions.act_window</field>
@@ -108,16 +90,12 @@
108
90
  <field name="view_mode">tree,form</field>
109
91
  <field name="view_id" ref="tax_tree" />
110
92
  <field name="help" type="html">
111
- <p class="o_view_nocontent_smiling_face">
112
- Add a new Tax
113
- </p><p>
114
- A Tax is necessary to create
115
- fiscal operations for your fiscal moves.
116
- </p>
93
+ <p class="o_view_nocontent_smiling_face">Add a new Tax</p>
94
+ <p>A Tax is necessary to create fiscal operations for your fiscal moves.</p>
117
95
  </field>
118
96
  </record>
119
-
120
97
  <!-- Tax ICMS Regulation -->
98
+
121
99
  <record id="tax_icms_regulation_action" model="ir.actions.act_window">
122
100
  <field name="name">ICMS Regulation</field>
123
101
  <field name="type">ir.actions.act_window</field>
@@ -125,16 +103,12 @@
125
103
  <field name="view_mode">tree,form</field>
126
104
  <field name="view_id" ref="tax_icms_regulation_tree" />
127
105
  <field name="help" type="html">
128
- <p class="o_view_nocontent_smiling_face">
129
- Add a new ICMS Regulation
130
- </p><p>
131
- A Tax is necessary to create
132
- fiscal operations for your fiscal moves.
133
- </p>
106
+ <p class="o_view_nocontent_smiling_face">Add a new ICMS Regulation</p>
107
+ <p>A Tax is necessary to create fiscal operations for your fiscal moves.</p>
134
108
  </field>
135
109
  </record>
136
-
137
110
  <!-- Tax ICMS Relief -->
111
+
138
112
  <record id="tax_icms_relief_action" model="ir.actions.act_window">
139
113
  <field name="name">ICMS Relief</field>
140
114
  <field name="type">ir.actions.act_window</field>
@@ -142,16 +116,12 @@
142
116
  <field name="view_mode">tree,form</field>
143
117
  <field name="view_id" ref="tax_icms_relief_tree" />
144
118
  <field name="help" type="html">
145
- <p class="o_view_nocontent_smiling_face">
146
- Add a new ICMS Relief
147
- </p><p>
148
- A Tax is necessary to create
149
- fiscal operations for your fiscal moves.
150
- </p>
119
+ <p class="o_view_nocontent_smiling_face">Add a new ICMS Relief</p>
120
+ <p>A Tax is necessary to create fiscal operations for your fiscal moves.</p>
151
121
  </field>
152
122
  </record>
153
-
154
123
  <!-- Tax PIS/COFINS -->
124
+
155
125
  <record id="tax_pis_cofins_action" model="ir.actions.act_window">
156
126
  <field name="name">PIS/COFINS</field>
157
127
  <field name="type">ir.actions.act_window</field>
@@ -159,16 +129,12 @@
159
129
  <field name="view_mode">tree,form</field>
160
130
  <field name="view_id" ref="tax_pis_cofins_tree" />
161
131
  <field name="help" type="html">
162
- <p class="o_view_nocontent_smiling_face">
163
- Add a new Tax PIS/COFINS
164
- </p><p>
165
- A Tax is necessary to create
166
- fiscal operations for your fiscal moves.
167
- </p>
132
+ <p class="o_view_nocontent_smiling_face">Add a new Tax PIS/COFINS</p>
133
+ <p>A Tax is necessary to create fiscal operations for your fiscal moves.</p>
168
134
  </field>
169
135
  </record>
170
-
171
136
  <!-- Tax PIS/COFINS Base -->
137
+
172
138
  <record id="tax_pis_cofins_base_action" model="ir.actions.act_window">
173
139
  <field name="name">PIS COFINS Base</field>
174
140
  <field name="type">ir.actions.act_window</field>
@@ -176,16 +142,12 @@
176
142
  <field name="view_mode">tree,form</field>
177
143
  <field name="view_id" ref="tax_pis_cofins_base_tree" />
178
144
  <field name="help" type="html">
179
- <p class="o_view_nocontent_smiling_face">
180
- Add a new Tax PIS/COFINS Base
181
- </p><p>
182
- A Tax is necessary to create
183
- fiscal operations for your fiscal moves.
184
- </p>
145
+ <p class="o_view_nocontent_smiling_face">Add a new Tax PIS/COFINS Base</p>
146
+ <p>A Tax is necessary to create fiscal operations for your fiscal moves.</p>
185
147
  </field>
186
148
  </record>
187
-
188
149
  <!-- Tax PIS/COFINS Credit -->
150
+
189
151
  <record id="tax_pis_cofins_credit_action" model="ir.actions.act_window">
190
152
  <field name="name">PIS COFINS Credit</field>
191
153
  <field name="type">ir.actions.act_window</field>
@@ -193,16 +155,12 @@
193
155
  <field name="view_mode">tree,form</field>
194
156
  <field name="view_id" ref="tax_pis_cofins_credit_tree" />
195
157
  <field name="help" type="html">
196
- <p class="o_view_nocontent_smiling_face">
197
- Add a new Tax PIS/COFINS Credit
198
- </p><p>
199
- A Tax is necessary to create
200
- fiscal operations for your fiscal moves.
201
- </p>
158
+ <p class="o_view_nocontent_smiling_face">Add a new Tax PIS/COFINS Credit</p>
159
+ <p>A Tax is necessary to create fiscal operations for your fiscal moves.</p>
202
160
  </field>
203
161
  </record>
204
-
205
162
  <!-- Tax IPI Control Seal -->
163
+
206
164
  <record id="tax_ipi_control_seal_action" model="ir.actions.act_window">
207
165
  <field name="name">IPI Control Seal</field>
208
166
  <field name="type">ir.actions.act_window</field>
@@ -210,16 +168,13 @@
210
168
  <field name="view_mode">tree,form</field>
211
169
  <field name="view_id" ref="tax_ipi_control_seal_tree" />
212
170
  <field name="help" type="html">
213
- <p class="o_view_nocontent_smiling_face">
214
- Add a new Tax IPI Control Seal
215
- </p><p>
216
- A Tax IPI control seal is necessary to create
217
- fiscal operations for your fiscal moves.
218
- </p>
171
+ <p class="o_view_nocontent_smiling_face">Add a new Tax IPI Control Seal</p>
172
+ <p
173
+ >A Tax IPI control seal is necessary to create fiscal operations for your fiscal moves.</p>
219
174
  </field>
220
175
  </record>
221
-
222
176
  <!-- Tax IPI Guideline -->
177
+
223
178
  <record id="tax_ipi_guideline_action" model="ir.actions.act_window">
224
179
  <field name="name">IPI Guideline</field>
225
180
  <field name="type">ir.actions.act_window</field>
@@ -227,16 +182,13 @@
227
182
  <field name="view_mode">tree,form</field>
228
183
  <field name="view_id" ref="tax_ipi_guideline_tree" />
229
184
  <field name="help" type="html">
230
- <p class="o_view_nocontent_smiling_face">
231
- Add a new Tax IPI Guideline
232
- </p><p>
233
- A Tax IPI guideline is necessary to create
234
- fiscal operations for your fiscal moves.
235
- </p>
185
+ <p class="o_view_nocontent_smiling_face">Add a new Tax IPI Guideline</p>
186
+ <p
187
+ >A Tax IPI guideline is necessary to create fiscal operations for your fiscal moves.</p>
236
188
  </field>
237
189
  </record>
238
-
239
190
  <!-- Tax IPI Guideline Class -->
191
+
240
192
  <record id="tax_ipi_guideline_class_action" model="ir.actions.act_window">
241
193
  <field name="name">Tax IPI Guideline Class</field>
242
194
  <field name="type">ir.actions.act_window</field>
@@ -244,16 +196,15 @@
244
196
  <field name="view_mode">tree,form</field>
245
197
  <field name="view_id" ref="tax_ipi_guideline_class_tree" />
246
198
  <field name="help" type="html">
247
- <p class="o_view_nocontent_smiling_face">
248
- Add a new Tax IPI Guideline Class
249
- </p><p>
250
- A Tax IPI guideline Class is necessary to create
251
- fiscal operations for your fiscal moves.
252
- </p>
199
+ <p
200
+ class="o_view_nocontent_smiling_face"
201
+ >Add a new Tax IPI Guideline Class</p>
202
+ <p
203
+ >A Tax IPI guideline Class is necessary to create fiscal operations for your fiscal moves.</p>
253
204
  </field>
254
205
  </record>
255
-
256
206
  <!-- NCM -->
207
+
257
208
  <record id="ncm_action" model="ir.actions.act_window">
258
209
  <field name="name">NCM</field>
259
210
  <field name="type">ir.actions.act_window</field>
@@ -261,16 +212,12 @@
261
212
  <field name="view_mode">tree,form,kanban</field>
262
213
  <field name="view_id" ref="ncm_tree" />
263
214
  <field name="help" type="html">
264
- <p class="o_view_nocontent_smiling_face">
265
- Add a new NCM
266
- </p><p>
267
- A NCM is necessary to create
268
- fiscal operations for your fiscal moves.
269
- </p>
215
+ <p class="o_view_nocontent_smiling_face">Add a new NCM</p>
216
+ <p>A NCM is necessary to create fiscal operations for your fiscal moves.</p>
270
217
  </field>
271
218
  </record>
272
-
273
219
  <!-- NBM -->
220
+
274
221
  <record id="nbm_action" model="ir.actions.act_window">
275
222
  <field name="name">NBM</field>
276
223
  <field name="type">ir.actions.act_window</field>
@@ -278,16 +225,12 @@
278
225
  <field name="view_mode">tree,form,kanban</field>
279
226
  <field name="view_id" ref="nbm_tree" />
280
227
  <field name="help" type="html">
281
- <p class="o_view_nocontent_smiling_face">
282
- Add a new NBM
283
- </p><p>
284
- A NBM is necessary to create
285
- fiscal operations for your fiscal moves.
286
- </p>
228
+ <p class="o_view_nocontent_smiling_face">Add a new NBM</p>
229
+ <p>A NBM is necessary to create fiscal operations for your fiscal moves.</p>
287
230
  </field>
288
231
  </record>
289
-
290
232
  <!-- NBS -->
233
+
291
234
  <record id="nbs_action" model="ir.actions.act_window">
292
235
  <field name="name">NBS</field>
293
236
  <field name="type">ir.actions.act_window</field>
@@ -295,16 +238,12 @@
295
238
  <field name="view_mode">tree,form,kanban</field>
296
239
  <field name="view_id" ref="nbs_tree" />
297
240
  <field name="help" type="html">
298
- <p class="o_view_nocontent_smiling_face">
299
- Add a new NBS
300
- </p><p>
301
- A NBS is necessary to create
302
- fiscal operations for your fiscal moves.
303
- </p>
241
+ <p class="o_view_nocontent_smiling_face">Add a new NBS</p>
242
+ <p>A NBS is necessary to create fiscal operations for your fiscal moves.</p>
304
243
  </field>
305
244
  </record>
306
-
307
245
  <!-- Service Type -->
246
+
308
247
  <record id="service_type_action" model="ir.actions.act_window">
309
248
  <field name="name">Service Type LC 166</field>
310
249
  <field name="type">ir.actions.act_window</field>
@@ -312,16 +251,13 @@
312
251
  <field name="view_mode">tree,form,kanban</field>
313
252
  <field name="view_id" ref="service_type_tree" />
314
253
  <field name="help" type="html">
315
- <p class="o_view_nocontent_smiling_face">
316
- Add a new Service Type
317
- </p><p>
318
- A Service Type is necessary to create
319
- fiscal operations for your fiscal moves.
320
- </p>
254
+ <p class="o_view_nocontent_smiling_face">Add a new Service Type</p>
255
+ <p
256
+ >A Service Type is necessary to create fiscal operations for your fiscal moves.</p>
321
257
  </field>
322
258
  </record>
323
-
324
259
  <!-- CEST -->
260
+
325
261
  <record id="cest_action" model="ir.actions.act_window">
326
262
  <field name="name">CEST</field>
327
263
  <field name="type">ir.actions.act_window</field>
@@ -329,16 +265,13 @@
329
265
  <field name="view_mode">tree,form</field>
330
266
  <field name="view_id" ref="cest_tree" />
331
267
  <field name="help" type="html">
332
- <p class="o_view_nocontent_smiling_face">
333
- Add a new CEST
334
- </p><p>
335
- A CEST is necessary to create
336
- fiscal operations for your fiscal moves.
337
- </p>
268
+ <p class="o_view_nocontent_smiling_face">Add a new CEST</p>
269
+ <p
270
+ >A CEST is necessary to create fiscal operations for your fiscal moves.</p>
338
271
  </field>
339
272
  </record>
340
-
341
273
  <!-- Fiscal Product Genre -->
274
+
342
275
  <record id="product_genre_action" model="ir.actions.act_window">
343
276
  <field name="name">Fiscal Product Genre</field>
344
277
  <field name="type">ir.actions.act_window</field>
@@ -346,16 +279,13 @@
346
279
  <field name="view_mode">tree,form</field>
347
280
  <field name="view_id" ref="product_genre_tree" />
348
281
  <field name="help" type="html">
349
- <p class="o_view_nocontent_smiling_face">
350
- Add a new Fiscal Product Genre
351
- </p><p>
352
- An Fiscal Product Genre is necessary to create
353
- EFD operations for your fiscal moves.
354
- </p>
282
+ <p class="o_view_nocontent_smiling_face">Add a new Fiscal Product Genre</p>
283
+ <p
284
+ >An Fiscal Product Genre is necessary to create EFD operations for your fiscal moves.</p>
355
285
  </field>
356
286
  </record>
357
-
358
287
  <!-- Fiscal Document Type -->
288
+
359
289
  <record id="document_type_action" model="ir.actions.act_window">
360
290
  <field name="name">Fiscal Document</field>
361
291
  <field name="type">ir.actions.act_window</field>
@@ -363,16 +293,12 @@
363
293
  <field name="view_mode">tree,form</field>
364
294
  <field name="view_id" ref="document_type_tree" />
365
295
  <field name="help" type="html">
366
- <p class="o_view_nocontent_smiling_face">
367
- Add a new Fiscal Document
368
- </p><p>
369
- All Documents supported by Brazilian
370
- Fiscal modulo for Odoo.
371
- </p>
296
+ <p class="o_view_nocontent_smiling_face">Add a new Fiscal Document</p>
297
+ <p>All Documents supported by Brazilian Fiscal modulo for Odoo.</p>
372
298
  </field>
373
299
  </record>
374
-
375
300
  <!-- Fiscal Document Serie -->
301
+
376
302
  <record id="document_serie_action" model="ir.actions.act_window">
377
303
  <field name="name">Fiscal Document Serie</field>
378
304
  <field name="type">ir.actions.act_window</field>
@@ -380,16 +306,27 @@
380
306
  <field name="view_mode">tree,form</field>
381
307
  <field name="view_id" ref="document_serie_tree" />
382
308
  <field name="help" type="html">
383
- <p class="o_view_nocontent_smiling_face">
384
- Add a new Fiscal Document Serie
385
- </p><p>
386
- All Serie for Documents supported by
387
- Brazilian Fiscal modulo for Odoo.
388
- </p>
309
+ <p class="o_view_nocontent_smiling_face">Add a new Fiscal Document Serie</p>
310
+ <p
311
+ >All Serie for Documents supported by Brazilian Fiscal modulo for Odoo.</p>
389
312
  </field>
390
313
  </record>
314
+ <!-- Tax Classification -->
391
315
 
316
+ <record id="tax_classification_action" model="ir.actions.act_window">
317
+ <field name="name">Tax Classification</field>
318
+ <field name="type">ir.actions.act_window</field>
319
+ <field name="res_model">l10n_br_fiscal.tax.classification</field>
320
+ <field name="view_mode">tree,form</field>
321
+ <field name="view_id" ref="tax_classification_tree" />
322
+ <field name="help" type="html">
323
+ <p class="o_view_nocontent_smiling_face">Add a new Tax Classification</p>
324
+ <p
325
+ >A Tax Classification is necessary to create fiscal operations for your fiscal moves.</p>
326
+ </field>
327
+ </record>
392
328
  <!-- Simplified Tax -->
329
+
393
330
  <record id="simplified_tax_action" model="ir.actions.act_window">
394
331
  <field name="name">Simplified Tax</field>
395
332
  <field name="type">ir.actions.act_window</field>
@@ -397,16 +334,13 @@
397
334
  <field name="view_mode">tree,form</field>
398
335
  <field name="view_id" ref="simplified_tax_tree" />
399
336
  <field name="help" type="html">
400
- <p class="o_view_nocontent_smiling_face">
401
- Add a new Simplified Tax
402
- </p><p>
403
- A Simplified Tax is necessary to determine the
404
- fiscal definitions for your company.
405
- </p>
337
+ <p class="o_view_nocontent_smiling_face">Add a new Simplified Tax</p>
338
+ <p
339
+ >A Simplified Tax is necessary to determine the fiscal definitions for your company.</p>
406
340
  </field>
407
341
  </record>
408
-
409
342
  <!-- Partner -->
343
+
410
344
  <record id="partner_action" model="ir.actions.act_window">
411
345
  <field name="name">Partner</field>
412
346
  <field name="type">ir.actions.act_window</field>
@@ -414,15 +348,14 @@
414
348
  <field name="view_mode">kanban,tree,form</field>
415
349
  <field name="search_view_id" ref="base.view_res_partner_filter" />
416
350
  <field name="help" type="html">
417
- <p class="o_view_nocontent_smiling_face">
418
- Create a new partner in your address book
419
- </p><p>
420
- Odoo helps you easily track all activities related to a partner.
421
- </p>
351
+ <p
352
+ class="o_view_nocontent_smiling_face"
353
+ >Create a new partner in your address book</p>
354
+ <p>Odoo helps you easily track all activities related to a partner.</p>
422
355
  </field>
423
356
  </record>
424
-
425
357
  <!-- Partner Profile -->
358
+
426
359
  <record id="partner_profile_action" model="ir.actions.act_window">
427
360
  <field name="name">Partner Profile</field>
428
361
  <field name="type">ir.actions.act_window</field>
@@ -431,16 +364,15 @@
431
364
  <field name="search_view_id" ref="partner_profile_search" />
432
365
  <field name="view_id" ref="partner_profile_tree" />
433
366
  <field name="help" type="html">
434
- <p class="o_view_nocontent_smiling_face">
435
- Create a new Fiscal Partner Profile
436
- </p><p>
437
- Odoo helps you easily track all activities
438
- related to a fiscal operation.
439
- </p>
367
+ <p
368
+ class="o_view_nocontent_smiling_face"
369
+ >Create a new Fiscal Partner Profile</p>
370
+ <p
371
+ >Odoo helps you easily track all activities related to a fiscal operation.</p>
440
372
  </field>
441
373
  </record>
442
-
443
374
  <!-- Product -->
375
+
444
376
  <record id="product_action" model="ir.actions.act_window">
445
377
  <field name="name">Products</field>
446
378
  <field name="type">ir.actions.act_window</field>
@@ -451,15 +383,12 @@
451
383
  >['|', '|', ('fiscal_type', '!=', '09'), ('fiscal_type', '=', False), ('type', '!=', 'service')]</field>
452
384
  <field name="view_id" ref="product_template_tree" />
453
385
  <field name="help" type="html">
454
- <p class="o_view_nocontent_smiling_face">
455
- Add a new Product
456
- </p><p>
457
- Create new products.
458
- </p>
386
+ <p class="o_view_nocontent_smiling_face">Add a new Product</p>
387
+ <p>Create new products.</p>
459
388
  </field>
460
389
  </record>
461
-
462
390
  <!-- Service -->
391
+
463
392
  <record id="service_action" model="ir.actions.act_window">
464
393
  <field name="name">Services</field>
465
394
  <field name="type">ir.actions.act_window</field>
@@ -473,16 +402,13 @@
473
402
  >{'default_fiscal_type': '09', 'default_type': 'service'}</field>
474
403
  <field name="view_id" ref="product_template_tree" />
475
404
  <field name="help" type="html">
476
- <p class="o_view_nocontent_smiling_face">
477
- Add a new Service
478
- </p><p>
479
- All Serie for Documents supported by
480
- Brazilian Fiscal modulo for Odoo.
481
- </p>
405
+ <p class="o_view_nocontent_smiling_face">Add a new Service</p>
406
+ <p
407
+ >All Serie for Documents supported by Brazilian Fiscal modulo for Odoo.</p>
482
408
  </field>
483
409
  </record>
484
-
485
410
  <!-- Operation -->
411
+
486
412
  <record id="operation_action" model="ir.actions.act_window">
487
413
  <field name="name">Operation</field>
488
414
  <field name="type">ir.actions.act_window</field>
@@ -491,16 +417,13 @@
491
417
  <field name="search_view_id" ref="operation_search" />
492
418
  <field name="view_id" ref="operation_tree" />
493
419
  <field name="help" type="html">
494
- <p class="o_view_nocontent_smiling_face">
495
- Create a new fiscal operation
496
- </p><p>
497
- Odoo helps you easily track all activities
498
- related to a fiscal operation.
499
- </p>
420
+ <p class="o_view_nocontent_smiling_face">Create a new fiscal operation</p>
421
+ <p
422
+ >Odoo helps you easily track all activities related to a fiscal operation.</p>
500
423
  </field>
501
424
  </record>
502
-
503
425
  <!-- Comment -->
426
+
504
427
  <record id="comment_action" model="ir.actions.act_window">
505
428
  <field name="name">Comment</field>
506
429
  <field name="type">ir.actions.act_window</field>
@@ -509,16 +432,13 @@
509
432
  <field name="search_view_id" ref="comment_search" />
510
433
  <field name="view_id" ref="comment_tree" />
511
434
  <field name="help" type="html">
512
- <p class="o_view_nocontent_smiling_face">
513
- Create a new Comment
514
- </p><p>
515
- Odoo helps you easily track all activities
516
- related to a fiscal comment.
517
- </p>
435
+ <p class="o_view_nocontent_smiling_face">Create a new Comment</p>
436
+ <p
437
+ >Odoo helps you easily track all activities related to a fiscal comment.</p>
518
438
  </field>
519
439
  </record>
520
-
521
440
  <!-- NF-e Document -->
441
+
522
442
  <record id="nfe_document_action" model="ir.actions.act_window">
523
443
  <field name="name">NF-e</field>
524
444
  <field name="type">ir.actions.act_window</field>
@@ -530,15 +450,12 @@
530
450
  />
531
451
  <field name="view_id" ref="document_tree" />
532
452
  <field name="help" type="html">
533
- <p class="o_view_nocontent_smiling_face">
534
- Add a new NFe
535
- </p><p>
536
- Here you can create NF-es
537
- </p>
453
+ <p class="o_view_nocontent_smiling_face">Add a new NFe</p>
454
+ <p>Here you can create NF-es</p>
538
455
  </field>
539
456
  </record>
540
-
541
457
  <!-- NFS-e Document -->
458
+
542
459
  <record id="nfse_document_action" model="ir.actions.act_window">
543
460
  <field name="name">NFS-e</field>
544
461
  <field name="type">ir.actions.act_window</field>
@@ -550,15 +467,12 @@
550
467
  />
551
468
  <field name="view_id" ref="document_tree" />
552
469
  <field name="help" type="html">
553
- <p class="o_view_nocontent_smiling_face">
554
- Add a new NFSe
555
- </p><p>
556
- Here you can create NFS-es
557
- </p>
470
+ <p class="o_view_nocontent_smiling_face">Add a new NFSe</p>
471
+ <p>Here you can create NFS-es</p>
558
472
  </field>
559
473
  </record>
560
-
561
474
  <!-- CT-e Document -->
475
+
562
476
  <record id="cte_document_action" model="ir.actions.act_window">
563
477
  <field name="name">CT-e</field>
564
478
  <field name="type">ir.actions.act_window</field>
@@ -570,11 +484,8 @@
570
484
  />
571
485
  <field name="view_id" ref="document_tree" />
572
486
  <field name="help" type="html">
573
- <p class="o_view_nocontent_smiling_face">
574
- Add a new CTe
575
- </p><p>
576
- Here you can create CT-es
577
- </p>
487
+ <p class="o_view_nocontent_smiling_face">Add a new CTe</p>
488
+ <p>Here you can create CT-es</p>
578
489
  </field>
579
490
  </record>
580
491
 
@@ -586,16 +497,13 @@
586
497
  <field name="search_view_id" ref="document_search" />
587
498
  <field name="view_id" ref="document_tree" />
588
499
  <field name="help" type="html">
589
- <p class="o_view_nocontent_smiling_face">
590
- Create a new Document
591
- </p><p>
592
- Odoo helps you easily track all activities
593
- related to a fiscal operation.
594
- </p>
500
+ <p class="o_view_nocontent_smiling_face">Create a new Document</p>
501
+ <p
502
+ >Odoo helps you easily track all activities related to a fiscal operation.</p>
595
503
  </field>
596
504
  </record>
597
-
598
505
  <!-- Fiscal Document In -->
506
+
599
507
  <record id="document_in_action" model="ir.actions.act_window">
600
508
  <field name="name">Incomming Document</field>
601
509
  <field name="type">ir.actions.act_window</field>
@@ -606,16 +514,13 @@
606
514
  <field name="domain">[('fiscal_operation_type', '=', 'in')]</field>
607
515
  <field name="context">{'default_fiscal_operation_type': 'in'}</field>
608
516
  <field name="help" type="html">
609
- <p class="o_view_nocontent_smiling_face">
610
- Create a new Document
611
- </p><p>
612
- Odoo helps you easily track all activities
613
- related to a fiscal operation.
614
- </p>
517
+ <p class="o_view_nocontent_smiling_face">Create a new Document</p>
518
+ <p
519
+ >Odoo helps you easily track all activities related to a fiscal operation.</p>
615
520
  </field>
616
521
  </record>
617
-
618
522
  <!-- Fiscal Document Out -->
523
+
619
524
  <record id="document_out_action" model="ir.actions.act_window">
620
525
  <field name="name">Outgoing Document</field>
621
526
  <field name="type">ir.actions.act_window</field>
@@ -626,16 +531,13 @@
626
531
  <field name="domain">[('fiscal_operation_type', '=', 'out')]</field>
627
532
  <field name="context">{'default_fiscal_operation_type': 'out'}</field>
628
533
  <field name="help" type="html">
629
- <p class="o_view_nocontent_smiling_face">
630
- Create a new Document
631
- </p><p>
632
- Odoo helps you easily track all activities
633
- related to a fiscal operation.
634
- </p>
534
+ <p class="o_view_nocontent_smiling_face">Create a new Document</p>
535
+ <p
536
+ >Odoo helps you easily track all activities related to a fiscal operation.</p>
635
537
  </field>
636
538
  </record>
637
-
638
539
  <!-- Config Settings -->
540
+
639
541
  <record id="config_action" model="ir.actions.act_window">
640
542
  <field name="name">Settings</field>
641
543
  <field name="type">ir.actions.act_window</field>
@@ -644,12 +546,28 @@
644
546
  <field name="target">inline</field>
645
547
  <field name="context">{'module': 'l10n_br_fiscal'}</field>
646
548
  </record>
647
-
648
549
  <!-- City Taxation Code -->
550
+
649
551
  <record id="city_taxation_code_action" model="ir.actions.act_window">
650
552
  <field name="name">City Taxation Code</field>
651
553
  <field name="res_model">l10n_br_fiscal.city.taxation.code</field>
652
554
  <field name="view_mode">tree,form</field>
653
555
  </record>
556
+ <!-- Operation Indicator -->
557
+
558
+ <record id="operation_indicator_action" model="ir.actions.act_window">
559
+ <field name="name">Operation Indicator</field>
560
+ <field name="res_model">l10n_br_fiscal.operation.indicator</field>
561
+ <field name="view_mode">tree,form</field>
562
+ <field name="help" type="html">
563
+ <p class="o_view_nocontent_smiling_face">
564
+ Create an Operation Indicator record
565
+ </p>
566
+ <p>
567
+ Operation Indicators are used to categorize consumption
568
+ operations.
569
+ </p>
570
+ </field>
571
+ </record>
654
572
 
655
573
  </odoo>