-
-
Notifications
You must be signed in to change notification settings - Fork 247
/
l10n_br_fiscal_comment_data.xml
43 lines (41 loc) · 1.92 KB
/
l10n_br_fiscal_comment_data.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0" encoding="utf-8" ?>
<odoo noupdate="0">
<record id="fiscal_comment_dummy" model="l10n_br_fiscal.comment">
<field name="name">Usuário emissor</field>
<field name="comment">Documento emitido por: ${(doc.user_id.name)}</field>
<field name="comment_type">fiscal</field>
<field name="object">l10n_br_fiscal.document.mixin</field>
</record>
<record id="fiscal_line_comment_dummy" model="l10n_br_fiscal.comment">
<field name="name">Total estimado dos impostos</field>
<field
name="comment"
>Valor Aprox. dos Tributos: ${format_amount(item.estimate_tax)}</field>
<field name="comment_type">fiscal</field>
<field name="object">l10n_br_fiscal.document.line.mixin</field>
</record>
<record id="fiscal_comment_sn_permissao_credito" model="l10n_br_fiscal.comment">
<field name="name">Simples Nacional permissão de crédito</field>
<field name="comment">
SIMPLES NACIONAL - Documento emitido por ME ou EPP optante pelo simples nacional, não gera direito a credito fiscal de IPI. Permite o aproveitamento do crédito de ICMS, no valor de ${format_amount(doc.amount_icmssn_credit_value)}, correspondente à alíquota de
%- if doc.is_sale_industry():
%- if not doc.is_sale_commerce():
${format_number(doc.company_id.icmssn_credit_industry)}%
%- endif
%- endif
%- if doc.is_sale_commerce():
%- if not doc.is_sale_industry():
${format_number(doc.company_id.icmssn_credit_commerce)}%
%- endif
%- endif
%- if doc.is_sale_industry():
%- if doc.is_sale_commerce():
${format_number(doc.company_id.icmssn_credit_industry)}% para industrialização e de ${format_number(doc.company_id.icmssn_credit_commerce)}% para revenda
%- endif
%- endif
, nos termos do artigo 23 da LC 123/2006.
</field>
<field name="comment_type">fiscal</field>
<field name="object">l10n_br_fiscal.document.mixin</field>
</record>
</odoo>