odoo-addon-l10n-br-fiscal 16.0.2.17.0__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 (162) hide show
  1. odoo/addons/l10n_br_fiscal/README.rst +11 -4
  2. odoo/addons/l10n_br_fiscal/__manifest__.py +20 -12
  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.cfop.csv +620 -620
  6. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.cst.csv +58 -0
  7. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.document.type.csv +1 -0
  8. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.legal.nature.csv +82 -0
  9. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.nbs.csv +791 -764
  10. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.operation.indicator.csv +27 -0
  11. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.partner.profile.csv +11 -0
  12. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.tax.classification.csv +163 -0
  13. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.tax.csv +32 -0
  14. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal.tax.group.csv +3 -0
  15. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal_icms_tax_definition_data.xml +340 -352
  16. odoo/addons/l10n_br_fiscal/data/operation_data.xml +1 -1
  17. odoo/addons/l10n_br_fiscal/data/simplified_tax_data.xml +5 -5
  18. odoo/addons/l10n_br_fiscal/data/uom.alias.csv +25 -0
  19. odoo/addons/l10n_br_fiscal/data/uom_data.xml +104 -33
  20. odoo/addons/l10n_br_fiscal/demo/__init__.py +21 -15
  21. odoo/addons/l10n_br_fiscal/demo/company_demo.xml +6 -0
  22. odoo/addons/l10n_br_fiscal/demo/fiscal_document_demo.xml +3 -377
  23. odoo/addons/l10n_br_fiscal/demo/fiscal_document_nfse_demo.xml +0 -12
  24. odoo/addons/l10n_br_fiscal/demo/fiscal_operation_demo.xml +2 -2
  25. odoo/addons/l10n_br_fiscal/demo/icms_tax_definition_demo.xml +5 -2
  26. odoo/addons/l10n_br_fiscal/demo/res_users_demo.xml +2 -2
  27. odoo/addons/l10n_br_fiscal/i18n/l10n_br_fiscal.pot +1161 -804
  28. odoo/addons/l10n_br_fiscal/i18n/pt_BR.po +22 -22
  29. odoo/addons/l10n_br_fiscal/migrations/16.0.13.0.0/pre-migration.py +25 -0
  30. odoo/addons/l10n_br_fiscal/migrations/16.0.14.0.0/pre-migration.py +30 -0
  31. odoo/addons/l10n_br_fiscal/migrations/16.0.14.0.5/pre-migration.py +15 -0
  32. odoo/addons/l10n_br_fiscal/migrations/16.0.4.0.0/pre-migration.py +220 -0
  33. odoo/addons/l10n_br_fiscal/migrations/16.0.5.0.0/pre-migration.py +33 -0
  34. odoo/addons/l10n_br_fiscal/migrations/16.0.5.2.0/pre-migration.py +21 -0
  35. odoo/addons/l10n_br_fiscal/models/__init__.py +3 -8
  36. odoo/addons/l10n_br_fiscal/models/cest.py +0 -8
  37. odoo/addons/l10n_br_fiscal/models/cfop.py +91 -0
  38. odoo/addons/l10n_br_fiscal/models/city_taxation_code.py +1 -3
  39. odoo/addons/l10n_br_fiscal/models/comment.py +2 -2
  40. odoo/addons/l10n_br_fiscal/models/cst.py +0 -1
  41. odoo/addons/l10n_br_fiscal/models/data_abstract.py +26 -0
  42. odoo/addons/l10n_br_fiscal/models/data_ncm_nbs_abstract.py +1 -1
  43. odoo/addons/l10n_br_fiscal/models/document.py +131 -222
  44. odoo/addons/l10n_br_fiscal/models/document_line.py +82 -5
  45. odoo/addons/l10n_br_fiscal/models/document_line_mixin.py +1952 -138
  46. odoo/addons/l10n_br_fiscal/models/document_mixin.py +741 -6
  47. odoo/addons/l10n_br_fiscal/models/document_related.py +12 -9
  48. odoo/addons/l10n_br_fiscal/models/document_serie.py +33 -0
  49. odoo/addons/l10n_br_fiscal/models/document_type.py +0 -6
  50. odoo/addons/l10n_br_fiscal/models/ibpt.py +1 -1
  51. odoo/addons/l10n_br_fiscal/models/icms_regulation.py +2 -2
  52. odoo/addons/l10n_br_fiscal/models/invalidate_number.py +4 -5
  53. odoo/addons/l10n_br_fiscal/models/legal_nature.py +20 -0
  54. odoo/addons/l10n_br_fiscal/models/nbm.py +0 -8
  55. odoo/addons/l10n_br_fiscal/models/ncm.py +0 -12
  56. odoo/addons/l10n_br_fiscal/models/operation.py +49 -15
  57. odoo/addons/l10n_br_fiscal/models/operation_dashboard.py +3 -2
  58. odoo/addons/l10n_br_fiscal/models/operation_indicator.py +58 -0
  59. odoo/addons/l10n_br_fiscal/models/operation_line.py +75 -6
  60. odoo/addons/l10n_br_fiscal/models/partner_profile.py +6 -0
  61. odoo/addons/l10n_br_fiscal/models/product_mixin.py +24 -21
  62. odoo/addons/l10n_br_fiscal/models/product_template.py +23 -13
  63. odoo/addons/l10n_br_fiscal/models/res_company.py +31 -9
  64. odoo/addons/l10n_br_fiscal/models/res_partner.py +38 -6
  65. odoo/addons/l10n_br_fiscal/models/simplified_tax.py +0 -3
  66. odoo/addons/l10n_br_fiscal/models/simplified_tax_range.py +8 -0
  67. odoo/addons/l10n_br_fiscal/models/tax.py +144 -55
  68. odoo/addons/l10n_br_fiscal/models/tax_classification.py +81 -0
  69. odoo/addons/l10n_br_fiscal/models/tax_definition.py +72 -23
  70. odoo/addons/l10n_br_fiscal/models/tax_pis_cofins.py +0 -3
  71. odoo/addons/l10n_br_fiscal/models/tax_pis_cofins_base.py +1 -1
  72. odoo/addons/l10n_br_fiscal/models/tax_pis_cofins_credit.py +1 -1
  73. odoo/addons/l10n_br_fiscal/models/uom_uom.py +15 -30
  74. odoo/addons/l10n_br_fiscal/security/fiscal_security.xml +11 -27
  75. odoo/addons/l10n_br_fiscal/security/ir.model.access.csv +11 -10
  76. odoo/addons/l10n_br_fiscal/static/description/index.html +27 -21
  77. odoo/addons/l10n_br_fiscal/static/src/js/list_renderer_with_button.esm.js +38 -0
  78. odoo/addons/l10n_br_fiscal/tests/__init__.py +3 -2
  79. odoo/addons/l10n_br_fiscal/tests/test_document_edition.py +308 -0
  80. odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_generic.py +23 -129
  81. odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_nfse.py +5 -15
  82. odoo/addons/l10n_br_fiscal/tests/test_fiscal_document_serie.py +60 -0
  83. odoo/addons/l10n_br_fiscal/tests/test_ibpt.py +4 -3
  84. odoo/addons/l10n_br_fiscal/tests/test_icms_regulation.py +2 -2
  85. odoo/addons/l10n_br_fiscal/tests/test_ncm.py +4 -1
  86. odoo/addons/l10n_br_fiscal/tests/test_tax_benefit.py +17 -22
  87. odoo/addons/l10n_br_fiscal/tests/test_tax_classification.py +110 -0
  88. odoo/addons/l10n_br_fiscal/tools.py +1 -1
  89. odoo/addons/l10n_br_fiscal/views/cest_view.xml +2 -4
  90. odoo/addons/l10n_br_fiscal/views/cfop_view.xml +25 -5
  91. odoo/addons/l10n_br_fiscal/views/city_taxation_code.xml +1 -4
  92. odoo/addons/l10n_br_fiscal/views/cnae_view.xml +2 -4
  93. odoo/addons/l10n_br_fiscal/views/comment_view.xml +2 -4
  94. odoo/addons/l10n_br_fiscal/views/cst_view.xml +6 -8
  95. odoo/addons/l10n_br_fiscal/views/{document_fiscal_line_mixin_view.xml → document_line_mixin_view.xml} +525 -385
  96. odoo/addons/l10n_br_fiscal/views/document_line_view.xml +101 -82
  97. odoo/addons/l10n_br_fiscal/views/document_related_view.xml +44 -46
  98. odoo/addons/l10n_br_fiscal/views/document_serie_view.xml +2 -6
  99. odoo/addons/l10n_br_fiscal/views/document_type_view.xml +0 -8
  100. odoo/addons/l10n_br_fiscal/views/document_view.xml +303 -370
  101. odoo/addons/l10n_br_fiscal/views/icms_regulation_view.xml +14 -16
  102. odoo/addons/l10n_br_fiscal/views/icms_relief_view.xml +8 -10
  103. odoo/addons/l10n_br_fiscal/views/invalidate_number_view.xml +46 -48
  104. odoo/addons/l10n_br_fiscal/views/l10n_br_fiscal_action.xml +166 -280
  105. odoo/addons/l10n_br_fiscal/views/l10n_br_fiscal_menu.xml +25 -99
  106. odoo/addons/l10n_br_fiscal/views/legal_nature_view.xml +40 -0
  107. odoo/addons/l10n_br_fiscal/views/nbm_view.xml +5 -6
  108. odoo/addons/l10n_br_fiscal/views/nbs_view.xml +5 -6
  109. odoo/addons/l10n_br_fiscal/views/ncm_view.xml +12 -15
  110. odoo/addons/l10n_br_fiscal/views/operation_dashboard_view.xml +13 -12
  111. odoo/addons/l10n_br_fiscal/views/operation_indicator_view.xml +75 -0
  112. odoo/addons/l10n_br_fiscal/views/operation_line_view.xml +22 -21
  113. odoo/addons/l10n_br_fiscal/views/operation_view.xml +4 -19
  114. odoo/addons/l10n_br_fiscal/views/partner_profile_view.xml +3 -6
  115. odoo/addons/l10n_br_fiscal/views/product_genre_view.xml +7 -9
  116. odoo/addons/l10n_br_fiscal/views/product_product_view.xml +37 -14
  117. odoo/addons/l10n_br_fiscal/views/product_template_view.xml +34 -14
  118. odoo/addons/l10n_br_fiscal/views/res_company_view.xml +55 -52
  119. odoo/addons/l10n_br_fiscal/views/res_config_settings_view.xml +23 -28
  120. odoo/addons/l10n_br_fiscal/views/res_partner_view.xml +22 -2
  121. odoo/addons/l10n_br_fiscal/views/service_type_view.xml +7 -8
  122. odoo/addons/l10n_br_fiscal/views/simplified_tax_range_view.xml +0 -2
  123. odoo/addons/l10n_br_fiscal/views/simplified_tax_view.xml +0 -2
  124. odoo/addons/l10n_br_fiscal/views/tax_classification.xml +110 -0
  125. odoo/addons/l10n_br_fiscal/views/tax_definition_view.xml +157 -129
  126. odoo/addons/l10n_br_fiscal/views/tax_estimate_view.xml +0 -2
  127. odoo/addons/l10n_br_fiscal/views/tax_group_view.xml +3 -6
  128. odoo/addons/l10n_br_fiscal/views/tax_ipi_control_seal_view.xml +0 -2
  129. odoo/addons/l10n_br_fiscal/views/tax_ipi_guideline_class_view.xml +0 -2
  130. odoo/addons/l10n_br_fiscal/views/tax_ipi_guideline_view.xml +2 -4
  131. odoo/addons/l10n_br_fiscal/views/tax_pis_cofins_base_view.xml +2 -4
  132. odoo/addons/l10n_br_fiscal/views/tax_pis_cofins_credit_view.xml +2 -4
  133. odoo/addons/l10n_br_fiscal/views/tax_pis_cofins_view.xml +5 -7
  134. odoo/addons/l10n_br_fiscal/views/tax_view.xml +5 -7
  135. odoo/addons/l10n_br_fiscal/views/uom_uom.xml +24 -17
  136. odoo/addons/l10n_br_fiscal/wizards/__init__.py +1 -0
  137. odoo/addons/l10n_br_fiscal/wizards/base_wizard_mixin.py +1 -1
  138. odoo/addons/l10n_br_fiscal/wizards/document_import_wizard_mixin.py +129 -0
  139. odoo/addons/l10n_br_fiscal/wizards/document_import_wizard_mixin.xml +41 -0
  140. {odoo_addon_l10n_br_fiscal-16.0.2.17.0.dist-info → odoo_addon_l10n_br_fiscal-16.0.19.4.0.dist-info}/METADATA +15 -6
  141. odoo_addon_l10n_br_fiscal-16.0.19.4.0.dist-info/RECORD +210 -0
  142. {odoo_addon_l10n_br_fiscal-16.0.2.17.0.dist-info → odoo_addon_l10n_br_fiscal-16.0.19.4.0.dist-info}/WHEEL +1 -1
  143. odoo/addons/l10n_br_fiscal/data/l10n_br_fiscal_email_template.xml +0 -68
  144. odoo/addons/l10n_br_fiscal/data/partner_profile_data.xml +0 -96
  145. odoo/addons/l10n_br_fiscal/data/uom_alternative_data.xml +0 -58
  146. odoo/addons/l10n_br_fiscal/demo/l10n_br_fiscal_document_email.xml +0 -54
  147. odoo/addons/l10n_br_fiscal/demo/subsequent_operation_demo.xml +0 -10
  148. odoo/addons/l10n_br_fiscal/models/document_email.py +0 -74
  149. odoo/addons/l10n_br_fiscal/models/document_line_mixin_methods.py +0 -913
  150. odoo/addons/l10n_br_fiscal/models/document_mixin_fields.py +0 -473
  151. odoo/addons/l10n_br_fiscal/models/document_mixin_methods.py +0 -269
  152. odoo/addons/l10n_br_fiscal/models/document_move_mixin.py +0 -261
  153. odoo/addons/l10n_br_fiscal/models/subsequent_document.py +0 -203
  154. odoo/addons/l10n_br_fiscal/models/subsequent_operation.py +0 -54
  155. odoo/addons/l10n_br_fiscal/models/uom_uom_alternative.py +0 -22
  156. odoo/addons/l10n_br_fiscal/tests/test_subsequent_operation.py +0 -71
  157. odoo/addons/l10n_br_fiscal/tests/test_uom_uom.py +0 -22
  158. odoo/addons/l10n_br_fiscal/views/document_email_view.xml +0 -48
  159. odoo/addons/l10n_br_fiscal/views/subsequent_document_view.xml +0 -43
  160. odoo/addons/l10n_br_fiscal/views/subsequent_operation_view.xml +0 -21
  161. odoo_addon_l10n_br_fiscal-16.0.2.17.0.dist-info/RECORD +0 -205
  162. {odoo_addon_l10n_br_fiscal-16.0.2.17.0.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,25 @@
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>
15
+ <!-- Legal Nature -->
17
16
 
17
+ <record id="legal_nature_action" model="ir.actions.act_window">
18
+ <field name="name">Legal Nature</field>
19
+ <field name="type">ir.actions.act_window</field>
20
+ <field name="res_model">l10n_br_fiscal.legal.nature</field>
21
+ <field name="view_mode">tree,form</field>
22
+ <field name="view_id" ref="legal_nature_tree" />
23
+ <field name="help" type="html">
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>
27
+ </field>
28
+ </record>
18
29
  <!-- CNAE -->
30
+
19
31
  <record id="cnae_action" model="ir.actions.act_window">
20
32
  <field name="name">CNAE</field>
21
33
  <field name="type">ir.actions.act_window</field>
@@ -23,16 +35,13 @@
23
35
  <field name="view_mode">tree,form</field>
24
36
  <field name="view_id" ref="cnae_tree" />
25
37
  <field name="help" type="html">
26
- <p class="o_view_nocontent_smiling_face">
27
- Add a new CNAE
28
- </p><p>
29
- A CNAE is necessary to determine the
30
- fiscal definitions for your company.
31
- </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>
32
41
  </field>
33
42
  </record>
34
-
35
43
  <!-- CFOP -->
44
+
36
45
  <record id="cfop_action" model="ir.actions.act_window">
37
46
  <field name="name">CFOP</field>
38
47
  <field name="type">ir.actions.act_window</field>
@@ -40,16 +49,13 @@
40
49
  <field name="view_mode">tree,form</field>
41
50
  <field name="view_id" ref="cfop_tree" />
42
51
  <field name="help" type="html">
43
- <p class="o_view_nocontent_smiling_face">
44
- Add a new CFOP
45
- </p><p>
46
- A CFOP is necessary to determine the
47
- fiscal operations for your fiscal moves.
48
- </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>
49
55
  </field>
50
56
  </record>
51
-
52
57
  <!-- CST -->
58
+
53
59
  <record id="cst_action" model="ir.actions.act_window">
54
60
  <field name="name">CST</field>
55
61
  <field name="type">ir.actions.act_window</field>
@@ -57,16 +63,12 @@
57
63
  <field name="view_mode">tree,form</field>
58
64
  <field name="view_id" ref="cst_tree" />
59
65
  <field name="help" type="html">
60
- <p class="o_view_nocontent_smiling_face">
61
- Add a new CST
62
- </p><p>
63
- A CST is necessary to create
64
- fiscal operations for your fiscal moves.
65
- </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>
66
68
  </field>
67
69
  </record>
68
-
69
70
  <!-- Tax Group -->
71
+
70
72
  <record id="tax_group_action" model="ir.actions.act_window">
71
73
  <field name="name">Tax Group</field>
72
74
  <field name="type">ir.actions.act_window</field>
@@ -74,16 +76,13 @@
74
76
  <field name="view_mode">tree,form</field>
75
77
  <field name="view_id" ref="tax_group_tree" />
76
78
  <field name="help" type="html">
77
- <p class="o_view_nocontent_smiling_face">
78
- Add a new Tax Group
79
- </p><p>
80
- A Tax Group is necessary to create
81
- fiscal operations for your fiscal moves.
82
- </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>
83
82
  </field>
84
83
  </record>
85
-
86
84
  <!-- Tax -->
85
+
87
86
  <record id="tax_action" model="ir.actions.act_window">
88
87
  <field name="name">Tax</field>
89
88
  <field name="type">ir.actions.act_window</field>
@@ -91,16 +90,12 @@
91
90
  <field name="view_mode">tree,form</field>
92
91
  <field name="view_id" ref="tax_tree" />
93
92
  <field name="help" type="html">
94
- <p class="o_view_nocontent_smiling_face">
95
- Add a new Tax
96
- </p><p>
97
- A Tax is necessary to create
98
- fiscal operations for your fiscal moves.
99
- </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>
100
95
  </field>
101
96
  </record>
102
-
103
97
  <!-- Tax ICMS Regulation -->
98
+
104
99
  <record id="tax_icms_regulation_action" model="ir.actions.act_window">
105
100
  <field name="name">ICMS Regulation</field>
106
101
  <field name="type">ir.actions.act_window</field>
@@ -108,16 +103,12 @@
108
103
  <field name="view_mode">tree,form</field>
109
104
  <field name="view_id" ref="tax_icms_regulation_tree" />
110
105
  <field name="help" type="html">
111
- <p class="o_view_nocontent_smiling_face">
112
- Add a new ICMS Regulation
113
- </p><p>
114
- A Tax is necessary to create
115
- fiscal operations for your fiscal moves.
116
- </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>
117
108
  </field>
118
109
  </record>
119
-
120
110
  <!-- Tax ICMS Relief -->
111
+
121
112
  <record id="tax_icms_relief_action" model="ir.actions.act_window">
122
113
  <field name="name">ICMS Relief</field>
123
114
  <field name="type">ir.actions.act_window</field>
@@ -125,16 +116,12 @@
125
116
  <field name="view_mode">tree,form</field>
126
117
  <field name="view_id" ref="tax_icms_relief_tree" />
127
118
  <field name="help" type="html">
128
- <p class="o_view_nocontent_smiling_face">
129
- Add a new ICMS Relief
130
- </p><p>
131
- A Tax is necessary to create
132
- fiscal operations for your fiscal moves.
133
- </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>
134
121
  </field>
135
122
  </record>
136
-
137
123
  <!-- Tax PIS/COFINS -->
124
+
138
125
  <record id="tax_pis_cofins_action" model="ir.actions.act_window">
139
126
  <field name="name">PIS/COFINS</field>
140
127
  <field name="type">ir.actions.act_window</field>
@@ -142,16 +129,12 @@
142
129
  <field name="view_mode">tree,form</field>
143
130
  <field name="view_id" ref="tax_pis_cofins_tree" />
144
131
  <field name="help" type="html">
145
- <p class="o_view_nocontent_smiling_face">
146
- Add a new Tax PIS/COFINS
147
- </p><p>
148
- A Tax is necessary to create
149
- fiscal operations for your fiscal moves.
150
- </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>
151
134
  </field>
152
135
  </record>
153
-
154
136
  <!-- Tax PIS/COFINS Base -->
137
+
155
138
  <record id="tax_pis_cofins_base_action" model="ir.actions.act_window">
156
139
  <field name="name">PIS COFINS Base</field>
157
140
  <field name="type">ir.actions.act_window</field>
@@ -159,16 +142,12 @@
159
142
  <field name="view_mode">tree,form</field>
160
143
  <field name="view_id" ref="tax_pis_cofins_base_tree" />
161
144
  <field name="help" type="html">
162
- <p class="o_view_nocontent_smiling_face">
163
- Add a new Tax PIS/COFINS Base
164
- </p><p>
165
- A Tax is necessary to create
166
- fiscal operations for your fiscal moves.
167
- </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>
168
147
  </field>
169
148
  </record>
170
-
171
149
  <!-- Tax PIS/COFINS Credit -->
150
+
172
151
  <record id="tax_pis_cofins_credit_action" model="ir.actions.act_window">
173
152
  <field name="name">PIS COFINS Credit</field>
174
153
  <field name="type">ir.actions.act_window</field>
@@ -176,16 +155,12 @@
176
155
  <field name="view_mode">tree,form</field>
177
156
  <field name="view_id" ref="tax_pis_cofins_credit_tree" />
178
157
  <field name="help" type="html">
179
- <p class="o_view_nocontent_smiling_face">
180
- Add a new Tax PIS/COFINS Credit
181
- </p><p>
182
- A Tax is necessary to create
183
- fiscal operations for your fiscal moves.
184
- </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>
185
160
  </field>
186
161
  </record>
187
-
188
162
  <!-- Tax IPI Control Seal -->
163
+
189
164
  <record id="tax_ipi_control_seal_action" model="ir.actions.act_window">
190
165
  <field name="name">IPI Control Seal</field>
191
166
  <field name="type">ir.actions.act_window</field>
@@ -193,16 +168,13 @@
193
168
  <field name="view_mode">tree,form</field>
194
169
  <field name="view_id" ref="tax_ipi_control_seal_tree" />
195
170
  <field name="help" type="html">
196
- <p class="o_view_nocontent_smiling_face">
197
- Add a new Tax IPI Control Seal
198
- </p><p>
199
- A Tax IPI control seal is necessary to create
200
- fiscal operations for your fiscal moves.
201
- </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>
202
174
  </field>
203
175
  </record>
204
-
205
176
  <!-- Tax IPI Guideline -->
177
+
206
178
  <record id="tax_ipi_guideline_action" model="ir.actions.act_window">
207
179
  <field name="name">IPI Guideline</field>
208
180
  <field name="type">ir.actions.act_window</field>
@@ -210,16 +182,13 @@
210
182
  <field name="view_mode">tree,form</field>
211
183
  <field name="view_id" ref="tax_ipi_guideline_tree" />
212
184
  <field name="help" type="html">
213
- <p class="o_view_nocontent_smiling_face">
214
- Add a new Tax IPI Guideline
215
- </p><p>
216
- A Tax IPI guideline is necessary to create
217
- fiscal operations for your fiscal moves.
218
- </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>
219
188
  </field>
220
189
  </record>
221
-
222
190
  <!-- Tax IPI Guideline Class -->
191
+
223
192
  <record id="tax_ipi_guideline_class_action" model="ir.actions.act_window">
224
193
  <field name="name">Tax IPI Guideline Class</field>
225
194
  <field name="type">ir.actions.act_window</field>
@@ -227,16 +196,15 @@
227
196
  <field name="view_mode">tree,form</field>
228
197
  <field name="view_id" ref="tax_ipi_guideline_class_tree" />
229
198
  <field name="help" type="html">
230
- <p class="o_view_nocontent_smiling_face">
231
- Add a new Tax IPI Guideline Class
232
- </p><p>
233
- A Tax IPI guideline Class is necessary to create
234
- fiscal operations for your fiscal moves.
235
- </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>
236
204
  </field>
237
205
  </record>
238
-
239
206
  <!-- NCM -->
207
+
240
208
  <record id="ncm_action" model="ir.actions.act_window">
241
209
  <field name="name">NCM</field>
242
210
  <field name="type">ir.actions.act_window</field>
@@ -244,16 +212,12 @@
244
212
  <field name="view_mode">tree,form,kanban</field>
245
213
  <field name="view_id" ref="ncm_tree" />
246
214
  <field name="help" type="html">
247
- <p class="o_view_nocontent_smiling_face">
248
- Add a new NCM
249
- </p><p>
250
- A NCM is necessary to create
251
- fiscal operations for your fiscal moves.
252
- </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>
253
217
  </field>
254
218
  </record>
255
-
256
219
  <!-- NBM -->
220
+
257
221
  <record id="nbm_action" model="ir.actions.act_window">
258
222
  <field name="name">NBM</field>
259
223
  <field name="type">ir.actions.act_window</field>
@@ -261,16 +225,12 @@
261
225
  <field name="view_mode">tree,form,kanban</field>
262
226
  <field name="view_id" ref="nbm_tree" />
263
227
  <field name="help" type="html">
264
- <p class="o_view_nocontent_smiling_face">
265
- Add a new NBM
266
- </p><p>
267
- A NBM is necessary to create
268
- fiscal operations for your fiscal moves.
269
- </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>
270
230
  </field>
271
231
  </record>
272
-
273
232
  <!-- NBS -->
233
+
274
234
  <record id="nbs_action" model="ir.actions.act_window">
275
235
  <field name="name">NBS</field>
276
236
  <field name="type">ir.actions.act_window</field>
@@ -278,16 +238,12 @@
278
238
  <field name="view_mode">tree,form,kanban</field>
279
239
  <field name="view_id" ref="nbs_tree" />
280
240
  <field name="help" type="html">
281
- <p class="o_view_nocontent_smiling_face">
282
- Add a new NBS
283
- </p><p>
284
- A NBS is necessary to create
285
- fiscal operations for your fiscal moves.
286
- </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>
287
243
  </field>
288
244
  </record>
289
-
290
245
  <!-- Service Type -->
246
+
291
247
  <record id="service_type_action" model="ir.actions.act_window">
292
248
  <field name="name">Service Type LC 166</field>
293
249
  <field name="type">ir.actions.act_window</field>
@@ -295,16 +251,13 @@
295
251
  <field name="view_mode">tree,form,kanban</field>
296
252
  <field name="view_id" ref="service_type_tree" />
297
253
  <field name="help" type="html">
298
- <p class="o_view_nocontent_smiling_face">
299
- Add a new Service Type
300
- </p><p>
301
- A Service Type is necessary to create
302
- fiscal operations for your fiscal moves.
303
- </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>
304
257
  </field>
305
258
  </record>
306
-
307
259
  <!-- CEST -->
260
+
308
261
  <record id="cest_action" model="ir.actions.act_window">
309
262
  <field name="name">CEST</field>
310
263
  <field name="type">ir.actions.act_window</field>
@@ -312,16 +265,13 @@
312
265
  <field name="view_mode">tree,form</field>
313
266
  <field name="view_id" ref="cest_tree" />
314
267
  <field name="help" type="html">
315
- <p class="o_view_nocontent_smiling_face">
316
- Add a new CEST
317
- </p><p>
318
- A CEST is necessary to create
319
- fiscal operations for your fiscal moves.
320
- </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>
321
271
  </field>
322
272
  </record>
323
-
324
273
  <!-- Fiscal Product Genre -->
274
+
325
275
  <record id="product_genre_action" model="ir.actions.act_window">
326
276
  <field name="name">Fiscal Product Genre</field>
327
277
  <field name="type">ir.actions.act_window</field>
@@ -329,16 +279,13 @@
329
279
  <field name="view_mode">tree,form</field>
330
280
  <field name="view_id" ref="product_genre_tree" />
331
281
  <field name="help" type="html">
332
- <p class="o_view_nocontent_smiling_face">
333
- Add a new Fiscal Product Genre
334
- </p><p>
335
- An Fiscal Product Genre is necessary to create
336
- EFD operations for your fiscal moves.
337
- </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>
338
285
  </field>
339
286
  </record>
340
-
341
287
  <!-- Fiscal Document Type -->
288
+
342
289
  <record id="document_type_action" model="ir.actions.act_window">
343
290
  <field name="name">Fiscal Document</field>
344
291
  <field name="type">ir.actions.act_window</field>
@@ -346,16 +293,12 @@
346
293
  <field name="view_mode">tree,form</field>
347
294
  <field name="view_id" ref="document_type_tree" />
348
295
  <field name="help" type="html">
349
- <p class="o_view_nocontent_smiling_face">
350
- Add a new Fiscal Document
351
- </p><p>
352
- All Documents supported by Brazilian
353
- Fiscal modulo for Odoo.
354
- </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>
355
298
  </field>
356
299
  </record>
357
-
358
300
  <!-- Fiscal Document Serie -->
301
+
359
302
  <record id="document_serie_action" model="ir.actions.act_window">
360
303
  <field name="name">Fiscal Document Serie</field>
361
304
  <field name="type">ir.actions.act_window</field>
@@ -363,33 +306,27 @@
363
306
  <field name="view_mode">tree,form</field>
364
307
  <field name="view_id" ref="document_serie_tree" />
365
308
  <field name="help" type="html">
366
- <p class="o_view_nocontent_smiling_face">
367
- Add a new Fiscal Document Serie
368
- </p><p>
369
- All Serie for Documents supported by
370
- Brazilian Fiscal modulo for Odoo.
371
- </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>
372
312
  </field>
373
313
  </record>
314
+ <!-- Tax Classification -->
374
315
 
375
- <!-- Fiscal Document Email -->
376
- <record id="document_email_action" model="ir.actions.act_window">
377
- <field name="name">Fiscal Document Email</field>
316
+ <record id="tax_classification_action" model="ir.actions.act_window">
317
+ <field name="name">Tax Classification</field>
378
318
  <field name="type">ir.actions.act_window</field>
379
- <field name="res_model">l10n_br_fiscal.document.email</field>
319
+ <field name="res_model">l10n_br_fiscal.tax.classification</field>
380
320
  <field name="view_mode">tree,form</field>
381
- <field name="view_id" ref="document_email_tree" />
321
+ <field name="view_id" ref="tax_classification_tree" />
382
322
  <field name="help" type="html">
383
- <p class="o_view_nocontent_smiling_face">
384
- Add a new Fiscal Document Email Definition
385
- </p><p>
386
- All Document Email Definitions supported by the Brazilian
387
- Fiscal module for Odoo.
388
- </p>
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>
389
326
  </field>
390
327
  </record>
328
+ <!-- Simplified Tax -->
391
329
 
392
- <!-- Simplefied Tax -->
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,48 +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>
500
- </field>
501
- </record>
502
-
503
- <!-- Subsequent Operation-->
504
- <record id="subsequent_operation_action" model="ir.actions.act_window">
505
- <field name="name">Subsequent Operation</field>
506
- <field name="type">ir.actions.act_window</field>
507
- <field name="res_model">l10n_br_fiscal.subsequent.operation</field>
508
- <field name="view_mode">kanban,tree,form</field>
509
- <field name="view_id" ref="subsequent_operation_tree" />
510
- <field name="help" type="html">
511
- <p class="o_view_nocontent_smiling_face">
512
- Create a new Subsequent operation
513
- </p><p>
514
-
515
- </p>
516
- </field>
517
- </record>
518
-
519
- <!-- Subsequent Document-->
520
- <record id="subsequent_document_action" model="ir.actions.act_window">
521
- <field name="name">Subsequent Document</field>
522
- <field name="type">ir.actions.act_window</field>
523
- <field name="res_model">l10n_br_fiscal.subsequent.document</field>
524
- <field name="view_mode">kanban,tree,form</field>
525
- <field name="view_id" ref="subsequent_document_tree" />
526
- <field name="help" type="html">
527
- <p class="o_view_nocontent_smiling_face">
528
- Create a new Subsequent Document
529
- </p><p>
530
-
531
- </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>
532
423
  </field>
533
424
  </record>
534
-
535
425
  <!-- Comment -->
426
+
536
427
  <record id="comment_action" model="ir.actions.act_window">
537
428
  <field name="name">Comment</field>
538
429
  <field name="type">ir.actions.act_window</field>
@@ -541,16 +432,13 @@
541
432
  <field name="search_view_id" ref="comment_search" />
542
433
  <field name="view_id" ref="comment_tree" />
543
434
  <field name="help" type="html">
544
- <p class="o_view_nocontent_smiling_face">
545
- Create a new Comment
546
- </p><p>
547
- Odoo helps you easily track all activities
548
- related to a fiscal comment.
549
- </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>
550
438
  </field>
551
439
  </record>
552
-
553
440
  <!-- NF-e Document -->
441
+
554
442
  <record id="nfe_document_action" model="ir.actions.act_window">
555
443
  <field name="name">NF-e</field>
556
444
  <field name="type">ir.actions.act_window</field>
@@ -562,15 +450,12 @@
562
450
  />
563
451
  <field name="view_id" ref="document_tree" />
564
452
  <field name="help" type="html">
565
- <p class="o_view_nocontent_smiling_face">
566
- Add a new NFe
567
- </p><p>
568
- Here you can create NF-es
569
- </p>
453
+ <p class="o_view_nocontent_smiling_face">Add a new NFe</p>
454
+ <p>Here you can create NF-es</p>
570
455
  </field>
571
456
  </record>
572
-
573
457
  <!-- NFS-e Document -->
458
+
574
459
  <record id="nfse_document_action" model="ir.actions.act_window">
575
460
  <field name="name">NFS-e</field>
576
461
  <field name="type">ir.actions.act_window</field>
@@ -582,15 +467,12 @@
582
467
  />
583
468
  <field name="view_id" ref="document_tree" />
584
469
  <field name="help" type="html">
585
- <p class="o_view_nocontent_smiling_face">
586
- Add a new NFSe
587
- </p><p>
588
- Here you can create NFS-es
589
- </p>
470
+ <p class="o_view_nocontent_smiling_face">Add a new NFSe</p>
471
+ <p>Here you can create NFS-es</p>
590
472
  </field>
591
473
  </record>
592
-
593
474
  <!-- CT-e Document -->
475
+
594
476
  <record id="cte_document_action" model="ir.actions.act_window">
595
477
  <field name="name">CT-e</field>
596
478
  <field name="type">ir.actions.act_window</field>
@@ -602,11 +484,8 @@
602
484
  />
603
485
  <field name="view_id" ref="document_tree" />
604
486
  <field name="help" type="html">
605
- <p class="o_view_nocontent_smiling_face">
606
- Add a new CTe
607
- </p><p>
608
- Here you can create CT-es
609
- </p>
487
+ <p class="o_view_nocontent_smiling_face">Add a new CTe</p>
488
+ <p>Here you can create CT-es</p>
610
489
  </field>
611
490
  </record>
612
491
 
@@ -618,16 +497,13 @@
618
497
  <field name="search_view_id" ref="document_search" />
619
498
  <field name="view_id" ref="document_tree" />
620
499
  <field name="help" type="html">
621
- <p class="o_view_nocontent_smiling_face">
622
- Create a new Document
623
- </p><p>
624
- Odoo helps you easily track all activities
625
- related to a fiscal operation.
626
- </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>
627
503
  </field>
628
504
  </record>
629
-
630
505
  <!-- Fiscal Document In -->
506
+
631
507
  <record id="document_in_action" model="ir.actions.act_window">
632
508
  <field name="name">Incomming Document</field>
633
509
  <field name="type">ir.actions.act_window</field>
@@ -638,16 +514,13 @@
638
514
  <field name="domain">[('fiscal_operation_type', '=', 'in')]</field>
639
515
  <field name="context">{'default_fiscal_operation_type': 'in'}</field>
640
516
  <field name="help" type="html">
641
- <p class="o_view_nocontent_smiling_face">
642
- Create a new Document
643
- </p><p>
644
- Odoo helps you easily track all activities
645
- related to a fiscal operation.
646
- </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>
647
520
  </field>
648
521
  </record>
649
-
650
522
  <!-- Fiscal Document Out -->
523
+
651
524
  <record id="document_out_action" model="ir.actions.act_window">
652
525
  <field name="name">Outgoing Document</field>
653
526
  <field name="type">ir.actions.act_window</field>
@@ -658,16 +531,13 @@
658
531
  <field name="domain">[('fiscal_operation_type', '=', 'out')]</field>
659
532
  <field name="context">{'default_fiscal_operation_type': 'out'}</field>
660
533
  <field name="help" type="html">
661
- <p class="o_view_nocontent_smiling_face">
662
- Create a new Document
663
- </p><p>
664
- Odoo helps you easily track all activities
665
- related to a fiscal operation.
666
- </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>
667
537
  </field>
668
538
  </record>
669
-
670
539
  <!-- Config Settings -->
540
+
671
541
  <record id="config_action" model="ir.actions.act_window">
672
542
  <field name="name">Settings</field>
673
543
  <field name="type">ir.actions.act_window</field>
@@ -676,12 +546,28 @@
676
546
  <field name="target">inline</field>
677
547
  <field name="context">{'module': 'l10n_br_fiscal'}</field>
678
548
  </record>
679
-
680
549
  <!-- City Taxation Code -->
550
+
681
551
  <record id="city_taxation_code_action" model="ir.actions.act_window">
682
552
  <field name="name">City Taxation Code</field>
683
553
  <field name="res_model">l10n_br_fiscal.city.taxation.code</field>
684
554
  <field name="view_mode">tree,form</field>
685
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>
686
572
 
687
573
  </odoo>