odoo-addon-l10n-br-mis-report 15.0.1.0.1.1__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-br-mis-report might be problematic. Click here for more details.

@@ -0,0 +1,267 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <odoo noupdate="1">
3
+ <record id="dre" model="mis.report">
4
+ <field name="name">DRE</field>
5
+ <field name="description">DEMONSTRAÇÃO DO RESULTADO DO EXERCÍCIO</field>
6
+ <field name="move_lines_source" ref="account.model_account_move_line" />
7
+ </record>
8
+
9
+ <record id="dre_header_receita" model="mis.report.kpi">
10
+ <field name="sequence">10</field>
11
+ <field name="report_id" ref="dre" />
12
+ <field name="description">VENDAS DE PRODUTOS, MERCADORIAS E SERVIÇOS</field>
13
+ <field name="name">header_receita</field>
14
+ <field name="expression">""</field>
15
+ <field name="type">str</field>
16
+ <field name="style_id" ref="mis_report_style_l10n_br_negrito" />
17
+ </record>
18
+
19
+ <record id="dre_receita_vendas" model="mis.report.kpi">
20
+ <field name="sequence">20</field>
21
+ <field name="report_id" ref="dre" />
22
+ <field name="description">Vendas de Produtos, Mercadorias e Serviços</field>
23
+ <field name="name">receita_vendas</field>
24
+ <field
25
+ name="expression"
26
+ >-bal[('user_type_id', '=', ref('account.data_account_type_revenue').id)]</field>
27
+ <field name="type">num</field>
28
+ <field name="compare_method">pct</field>
29
+ <field name="auto_expand_accounts" eval="True" />
30
+ </record>
31
+
32
+ <record id="dre_deducoes_receita" model="mis.report.kpi">
33
+ <field name="sequence">30</field>
34
+ <field name="report_id" ref="dre" />
35
+ <field
36
+ name="description"
37
+ >(-) Deduções de Tributos, Abatimentos e Devoluções</field>
38
+ <field name="name">deducoes_receita</field>
39
+ <field
40
+ name="expression"
41
+ >bal[('user_type_id', '=', ref('l10n_br_coa.data_account_type_revenue_deduction').id)]</field>
42
+ <field name="type">num</field>
43
+ <field name="compare_method">pct</field>
44
+ <field name="auto_expand_accounts" eval="True" />
45
+ </record>
46
+
47
+ <record id="dre_receita" model="mis.report.kpi">
48
+ <field name="sequence">40</field>
49
+ <field name="report_id" ref="dre" />
50
+ <field name="description">= RECEITA</field>
51
+ <field name="name">receita</field>
52
+ <field name="expression">receita_vendas-deducoes_receita</field>
53
+ <field name="type">num</field>
54
+ <field name="compare_method">pct</field>
55
+ <field name="style_id" ref="mis_report_style_l10n_br_negrito" />
56
+
57
+ </record>
58
+
59
+ <record id="dre_header_custo_vendas" model="mis.report.kpi">
60
+ <field name="sequence">50</field>
61
+ <field name="report_id" ref="dre" />
62
+ <field name="description">(-) CUSTO DAS VENDAS</field>
63
+ <field name="name">header_custo_vendas</field>
64
+ <field name="expression">""</field>
65
+ <field name="type">str</field>
66
+ <field name="style_id" ref="mis_report_style_l10n_br_negrito" />
67
+
68
+ </record>
69
+
70
+ <record id="dre_custo_vendas" model="mis.report.kpi">
71
+ <field name="sequence">60</field>
72
+ <field name="report_id" ref="dre" />
73
+ <field name="description">Custo dos Produtos, Mercadorias e Serviços</field>
74
+ <field name="name">custo_vendas</field>
75
+ <field
76
+ name="expression"
77
+ >balp[('user_type_id', '=', ref('account.data_account_type_direct_costs').id)]</field>
78
+ <field name="type">num</field>
79
+ <field name="compare_method">pct</field>
80
+ <field name="auto_expand_accounts" eval="True" />
81
+ </record>
82
+
83
+ <record id="dre_lucro_bruto" model="mis.report.kpi">
84
+ <field name="sequence">70</field>
85
+ <field name="report_id" ref="dre" />
86
+ <field name="description">= LUCRO BRUTO</field>
87
+ <field name="name">lucro_bruto</field>
88
+ <field name="expression">receita-custo_vendas</field>
89
+ <field name="type">num</field>
90
+ <field name="compare_method">pct</field>
91
+ <field name="style_id" ref="mis_report_style_l10n_br_negrito" />
92
+
93
+ </record>
94
+
95
+ <record id="dre_header_despesas_operacionais" model="mis.report.kpi">
96
+ <field name="sequence">80</field>
97
+ <field name="report_id" ref="dre" />
98
+ <field name="description">(-) DESPESAS OPERACIONAIS</field>
99
+ <field name="name">depesas_operacionais</field>
100
+ <field
101
+ name="expression"
102
+ >despesas_administrativas+despesas_vendas+despesas_gerais</field>
103
+ <field name="type">num</field>
104
+ <field name="compare_method">pct</field>
105
+ <field name="style_id" ref="mis_report_style_l10n_br_negrito" />
106
+ </record>
107
+
108
+ <record id="dre_despesas_administrativas" model="mis.report.kpi">
109
+ <field name="sequence">90</field>
110
+ <field name="report_id" ref="dre" />
111
+ <field name="description">Despesas Administrativas</field>
112
+ <field name="name">despesas_administrativas</field>
113
+ <field
114
+ name="expression"
115
+ >balp[('user_type_id', '=', ref('l10n_br_coa.data_account_type_admin_expenses').id)]</field>
116
+ <field name="type">num</field>
117
+ <field name="compare_method">pct</field>
118
+ <field name="auto_expand_accounts" eval="True" />
119
+ </record>
120
+
121
+ <record id="dre_despesas_vendas" model="mis.report.kpi">
122
+ <field name="sequence">100</field>
123
+ <field name="report_id" ref="dre" />
124
+ <field name="description">Despesas com Vendas</field>
125
+ <field name="name">despesas_vendas</field>
126
+ <field
127
+ name="expression"
128
+ >balp[('user_type_id', '=', ref('l10n_br_coa.data_account_type_sale_expenses').id)]</field>
129
+ <field name="type">num</field>
130
+ <field name="compare_method">pct</field>
131
+ <field name="auto_expand_accounts" eval="True" />
132
+ </record>
133
+
134
+ <record id="dre_despesas_gerais" model="mis.report.kpi">
135
+ <field name="sequence">110</field>
136
+ <field name="report_id" ref="dre" />
137
+ <field name="description">Outras Despesas Gerais</field>
138
+ <field name="name">despesas_gerais</field>
139
+ <field
140
+ name="expression"
141
+ >balp[('user_type_id', '=', ref('l10n_br_coa.data_account_type_other_general_expenses').id)]</field>
142
+ <field name="type">num</field>
143
+ <field name="compare_method">pct</field>
144
+ <field name="auto_expand_accounts" eval="True" />
145
+ </record>
146
+
147
+ <record id="dre_resultado_operacional" model="mis.report.kpi">
148
+ <field name="sequence">120</field>
149
+ <field name="report_id" ref="dre" />
150
+ <field
151
+ name="description"
152
+ >= RESULTADO OPERACIONAL ANTES DO RESULTADO FINANCEIRO</field>
153
+ <field name="name">resultado_operacional</field>
154
+ <field name="expression">lucro_bruto-depesas_operacionais</field>
155
+ <field name="type">num</field>
156
+ <field name="compare_method">pct</field>
157
+ <field name="style_id" ref="mis_report_style_l10n_br_negrito" />
158
+ </record>
159
+
160
+ <record id="dre_resultado_financeiro" model="mis.report.kpi">
161
+ <field name="sequence">130</field>
162
+ <field name="report_id" ref="dre" />
163
+ <field name="description">(+/-) RESULTADO FINANCEIRO</field>
164
+ <field name="name">resultado_financeiro</field>
165
+ <field name="expression">receitas_financeiras+despesas_financeiras</field>
166
+ <field name="type">num</field>
167
+ <field name="compare_method">pct</field>
168
+ <field name="style_id" ref="mis_report_style_l10n_br_negrito" />
169
+ </record>
170
+
171
+ <record id="dre_receitas_financeiras" model="mis.report.kpi">
172
+ <field name="sequence">140</field>
173
+ <field name="report_id" ref="dre" />
174
+ <field name="description">Receitas Financeiras</field>
175
+ <field name="name">receitas_financeiras</field>
176
+ <field
177
+ name="expression"
178
+ >balp[('user_type_id', '=', ref('l10n_br_coa.data_account_type_revenue_financial').id)]</field>
179
+ <field name="type">num</field>
180
+ <field name="compare_method">pct</field>
181
+ <field name="auto_expand_accounts" eval="True" />
182
+ </record>
183
+
184
+ <record id="dre_despesas_financeiras" model="mis.report.kpi">
185
+ <field name="sequence">150</field>
186
+ <field name="report_id" ref="dre" />
187
+ <field name="description">(-) Despesas Financeiras</field>
188
+ <field name="name">despesas_financeiras</field>
189
+ <field
190
+ name="expression"
191
+ >balp[('user_type_id', '=', ref('l10n_br_coa.data_account_type_expenses_financial').id)]</field>
192
+ <field name="type">num</field>
193
+ <field name="compare_method">pct</field>
194
+ <field name="auto_expand_accounts" eval="True" />
195
+ </record>
196
+
197
+
198
+ <record id="dre_outras_receitas_despesas_operacionais" model="mis.report.kpi">
199
+ <field name="sequence">160</field>
200
+ <field name="report_id" ref="dre" />
201
+ <field name="description">(+/-) OUTRAS RECEITAS E DESPESAS OPERACIONAIS</field>
202
+ <field name="name">outras_receitas_despesas_op</field>
203
+ <field
204
+ name="expression"
205
+ >balp[('user_type_id', '=', ref('l10n_br_coa.data_account_type_other_operational_expenses').id)]</field>
206
+ <field name="type">num</field>
207
+ <field name="compare_method">pct</field>
208
+ <field name="style_id" ref="mis_report_style_l10n_br_negrito" />
209
+ <field name="auto_expand_accounts" eval="True" />
210
+ </record>
211
+
212
+
213
+ <record id="dre_resultado_antes_lucro" model="mis.report.kpi">
214
+ <field name="sequence">170</field>
215
+ <field name="report_id" ref="dre" />
216
+ <field
217
+ name="description"
218
+ >= RESULTADO ANTES DAS DESPESAS COM TRIBUTOS SOBRE O LUCRO</field>
219
+ <field name="name">resultado_antes_lucro</field>
220
+ <field
221
+ name="expression"
222
+ >resultado_operacional+resultado_financeiro+outras_receitas_despesas_op</field>
223
+ <field name="type">num</field>
224
+ <field name="compare_method">pct</field>
225
+ <field name="style_id" ref="mis_report_style_l10n_br_negrito" />
226
+ </record>
227
+
228
+ <record id="dre_contribuicao_social" model="mis.report.kpi">
229
+ <field name="sequence">180</field>
230
+ <field name="report_id" ref="dre" />
231
+ <field name="description">(-) Despesa com Contribuição Social</field>
232
+ <field name="name">contribuicao_social</field>
233
+ <field
234
+ name="expression"
235
+ >balp[('user_type_id', '=', ref('l10n_br_coa.data_account_type_expense_csll').id)]</field>
236
+ <field name="type">num</field>
237
+ <field name="compare_method">pct</field>
238
+ </record>
239
+
240
+ <record id="dre_imposto_renda_pj" model="mis.report.kpi">
241
+ <field name="sequence">190</field>
242
+ <field name="report_id" ref="dre" />
243
+ <field
244
+ name="description"
245
+ >(-) Despesa com Imposto de Renda da Pessoa Jurídica</field>
246
+ <field name="name">imposto_renda_pj</field>
247
+ <field
248
+ name="expression"
249
+ >balp[('user_type_id', '=', ref('l10n_br_coa.data_account_type_expense_irpj').id)]</field>
250
+ <field name="type">num</field>
251
+ <field name="compare_method">pct</field>
252
+ </record>
253
+
254
+ <record id="dre_resultado" model="mis.report.kpi">
255
+ <field name="sequence">200</field>
256
+ <field name="report_id" ref="dre" />
257
+ <field name="description">= RESULTADO LÍQUIDO DO PERÍODO</field>
258
+ <field name="name">resultado</field>
259
+ <field
260
+ name="expression"
261
+ >resultado_antes_lucro+contribuicao_social+imposto_renda_pj</field>
262
+ <field name="type">num</field>
263
+ <field name="compare_method">pct</field>
264
+ <field name="style_id" ref="mis_report_style_l10n_br_negrito" />
265
+ </record>
266
+
267
+ </odoo>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="utf-8" ?>
2
+ <!-- Copyright 2020 KMEE INFORMATICA LTDA
3
+ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
4
+ <odoo noupdate="1">
5
+
6
+ <record id="mis_report_style_l10n_br_negrito" model="mis.report.style">
7
+ <field name="name">BR Negrito</field>
8
+ <field name="font_weight_inherit" eval="0" />
9
+ <field name="font_weight">bold</field>
10
+ </record>
11
+
12
+ </odoo>
@@ -0,0 +1,277 @@
1
+ # Translation of Odoo Server.
2
+ # This file contains the translation of the following modules:
3
+ # * l10n_br_mis_report
4
+ #
5
+ msgid ""
6
+ msgstr ""
7
+ "Project-Id-Version: Odoo Server 15.0\n"
8
+ "Report-Msgid-Bugs-To: \n"
9
+ "Last-Translator: \n"
10
+ "Language-Team: \n"
11
+ "MIME-Version: 1.0\n"
12
+ "Content-Type: text/plain; charset=UTF-8\n"
13
+ "Content-Transfer-Encoding: \n"
14
+ "Plural-Forms: \n"
15
+
16
+ #. module: l10n_br_mis_report
17
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_outras_receitas_despesas_operacionais
18
+ msgid "(+/-) OUTRAS RECEITAS E DESPESAS OPERACIONAIS"
19
+ msgstr ""
20
+
21
+ #. module: l10n_br_mis_report
22
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_resultado_financeiro
23
+ msgid "(+/-) RESULTADO FINANCEIRO"
24
+ msgstr ""
25
+
26
+ #. module: l10n_br_mis_report
27
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_header_custo_vendas
28
+ msgid "(-) CUSTO DAS VENDAS"
29
+ msgstr ""
30
+
31
+ #. module: l10n_br_mis_report
32
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_header_despesas_operacionais
33
+ msgid "(-) DESPESAS OPERACIONAIS"
34
+ msgstr ""
35
+
36
+ #. module: l10n_br_mis_report
37
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_deducoes_receita
38
+ msgid "(-) Deduções de Tributos, Abatimentos e Devoluções"
39
+ msgstr ""
40
+
41
+ #. module: l10n_br_mis_report
42
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_depreciacao_amortizacao
43
+ msgid "(-) Depreciação e Amortização Acumuladas"
44
+ msgstr ""
45
+
46
+ #. module: l10n_br_mis_report
47
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_contribuicao_social
48
+ msgid "(-) Despesa com Contribuição Social"
49
+ msgstr ""
50
+
51
+ #. module: l10n_br_mis_report
52
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_imposto_renda_pj
53
+ msgid "(-) Despesa com Imposto de Renda da Pessoa Jurídica"
54
+ msgstr ""
55
+
56
+ #. module: l10n_br_mis_report
57
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_despesas_financeiras
58
+ msgid "(-) Despesas Financeiras"
59
+ msgstr ""
60
+
61
+ #. module: l10n_br_mis_report
62
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_prejuizos
63
+ msgid "(-) Prejuízos Acumulados"
64
+ msgstr ""
65
+
66
+ #. module: l10n_br_mis_report
67
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_lucro_bruto
68
+ msgid "= LUCRO BRUTO"
69
+ msgstr ""
70
+
71
+ #. module: l10n_br_mis_report
72
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_receita
73
+ msgid "= RECEITA"
74
+ msgstr ""
75
+
76
+ #. module: l10n_br_mis_report
77
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_resultado_antes_lucro
78
+ msgid "= RESULTADO ANTES DAS DESPESAS COM TRIBUTOS SOBRE O LUCRO"
79
+ msgstr ""
80
+
81
+ #. module: l10n_br_mis_report
82
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_resultado
83
+ msgid "= RESULTADO LÍQUIDO DO PERÍODO"
84
+ msgstr ""
85
+
86
+ #. module: l10n_br_mis_report
87
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_resultado_operacional
88
+ msgid "= RESULTADO OPERACIONAL ANTES DO RESULTADO FINANCEIRO"
89
+ msgstr ""
90
+
91
+ #. module: l10n_br_mis_report
92
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_header_1
93
+ msgid "ATIVO"
94
+ msgstr ""
95
+
96
+ #. module: l10n_br_mis_report
97
+ #: model:mis.report,description:l10n_br_mis_report.balanco_patrimonial
98
+ msgid "BALANÇO PATRIMONIAL"
99
+ msgstr ""
100
+
101
+ #. module: l10n_br_mis_report
102
+ #: model:mis.report,name:l10n_br_mis_report.balanco_patrimonial
103
+ msgid "BP"
104
+ msgstr ""
105
+
106
+ #. module: l10n_br_mis_report
107
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_circulante_ativo
108
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_passivo_circulante
109
+ msgid "CIRCULANTE"
110
+ msgstr ""
111
+
112
+ #. module: l10n_br_mis_report
113
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_caixa
114
+ msgid "Caixa e Equivalentes de Caixa"
115
+ msgstr ""
116
+
117
+ #. module: l10n_br_mis_report
118
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_capital_social
119
+ msgid "Capital Social"
120
+ msgstr ""
121
+
122
+ #. module: l10n_br_mis_report
123
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_contas_a_pagar
124
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_contas_a_pagar_longo
125
+ msgid "Contas a Pagar"
126
+ msgstr ""
127
+
128
+ #. module: l10n_br_mis_report
129
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_contas_a_receber
130
+ msgid "Contas a Receber"
131
+ msgstr ""
132
+
133
+ #. module: l10n_br_mis_report
134
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_custo_vendas
135
+ msgid "Custo dos Produtos, Mercadorias e Serviços"
136
+ msgstr ""
137
+
138
+ #. module: l10n_br_mis_report
139
+ #: model:mis.report,description:l10n_br_mis_report.dre
140
+ msgid "DEMONSTRAÇÃO DO RESULTADO DO EXERCÍCIO"
141
+ msgstr ""
142
+
143
+ #. module: l10n_br_mis_report
144
+ #: model:mis.report,name:l10n_br_mis_report.dre
145
+ msgid "DRE"
146
+ msgstr ""
147
+
148
+ #. module: l10n_br_mis_report
149
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_despesas_administrativas
150
+ msgid "Despesas Administrativas"
151
+ msgstr ""
152
+
153
+ #. module: l10n_br_mis_report
154
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_despesas_vendas
155
+ msgid "Despesas com Vendas"
156
+ msgstr ""
157
+
158
+ #. module: l10n_br_mis_report
159
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_emprestimos_financiamentos
160
+ msgid "Empréstimos e Financiamentos"
161
+ msgstr ""
162
+
163
+ #. module: l10n_br_mis_report
164
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_estoques
165
+ msgid "Estoques"
166
+ msgstr ""
167
+
168
+ #. module: l10n_br_mis_report
169
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_financiamentos_longo
170
+ msgid "Financiamentos"
171
+ msgstr ""
172
+
173
+ #. module: l10n_br_mis_report
174
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_fornecedores
175
+ msgid "Fornecedores"
176
+ msgstr ""
177
+
178
+ #. module: l10n_br_mis_report
179
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_imobilizado
180
+ msgid "Imobilizado"
181
+ msgstr ""
182
+
183
+ #. module: l10n_br_mis_report
184
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_intangivel
185
+ msgid "Intangível"
186
+ msgstr ""
187
+
188
+ #. module: l10n_br_mis_report
189
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_investimentos
190
+ msgid "Investimentos"
191
+ msgstr ""
192
+
193
+ #. module: l10n_br_mis_report
194
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_lucros_prejuizos
195
+ msgid "Lucros Acumulados"
196
+ msgstr ""
197
+
198
+ #. module: l10n_br_mis_report
199
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_nao_circulante_ativo
200
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_passivo_nao_circulante
201
+ msgid "NÃO CIRCULANTE"
202
+ msgstr ""
203
+
204
+ #. module: l10n_br_mis_report
205
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_obrigacoes_fiscais
206
+ msgid "Obrigações Fiscais"
207
+ msgstr ""
208
+
209
+ #. module: l10n_br_mis_report
210
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_obrigacoes_trabalhistas_sociais
211
+ msgid "Obrigações Trabalhistas e Sociais"
212
+ msgstr ""
213
+
214
+ #. module: l10n_br_mis_report
215
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_despesas_gerais
216
+ msgid "Outras Despesas Gerais"
217
+ msgstr ""
218
+
219
+ #. module: l10n_br_mis_report
220
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_outros_creditos
221
+ msgid "Outros Creditos"
222
+ msgstr ""
223
+
224
+ #. module: l10n_br_mis_report
225
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_header_2
226
+ msgid "PASSIVO e PATRIMÔNIO LÍQUIDO"
227
+ msgstr ""
228
+
229
+ #. module: l10n_br_mis_report
230
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_patrimonio_liquido
231
+ msgid "PATRIMÔNIO LÍQUIDO"
232
+ msgstr ""
233
+
234
+ #. module: l10n_br_mis_report
235
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_provisoes
236
+ msgid "Provisões"
237
+ msgstr ""
238
+
239
+ #. module: l10n_br_mis_report
240
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_realizavel_longo_prazo
241
+ msgid "Realizável a Longo Prazo"
242
+ msgstr ""
243
+
244
+ #. module: l10n_br_mis_report
245
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_receitas_financeiras
246
+ msgid "Receitas Financeiras"
247
+ msgstr ""
248
+
249
+ #. module: l10n_br_mis_report
250
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_reservas_capital
251
+ msgid "Reservas de Capital"
252
+ msgstr ""
253
+
254
+ #. module: l10n_br_mis_report
255
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_reservas_lucros
256
+ msgid "Reservas de Lucros"
257
+ msgstr ""
258
+
259
+ #. module: l10n_br_mis_report
260
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_total_ativo
261
+ msgid "TOTAL DO ATIVO"
262
+ msgstr ""
263
+
264
+ #. module: l10n_br_mis_report
265
+ #: model:mis.report.kpi,description:l10n_br_mis_report.balanco_patrimonial_total_passivo_patrimonio_liq
266
+ msgid "TOTAL DO PASSIVO E PATRIMÔNIO LÍQUIDO"
267
+ msgstr ""
268
+
269
+ #. module: l10n_br_mis_report
270
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_header_receita
271
+ msgid "VENDAS DE PRODUTOS, MERCADORIAS E SERVIÇOS"
272
+ msgstr ""
273
+
274
+ #. module: l10n_br_mis_report
275
+ #: model:mis.report.kpi,description:l10n_br_mis_report.dre_receita_vendas
276
+ msgid "Vendas de Produtos, Mercadorias e Serviços"
277
+ msgstr ""