br_danfe 0.15.1 → 0.17.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +20 -8
- data/.github/dependabot.yml +19 -0
- data/.rubocop.yml +24 -11
- data/.tool-versions +1 -0
- data/Gemfile.lock +69 -50
- data/Guardfile +4 -2
- data/README.md +23 -0
- data/bin/_guard-core +29 -0
- data/bin/guard +29 -0
- data/br_danfe.gemspec +9 -7
- data/lib/br_danfe/danfe_lib/nfce.rb +11 -9
- data/lib/br_danfe/danfe_lib/nfce_lib/document.rb +1 -1
- data/lib/br_danfe/danfe_lib/nfce_lib/footer.rb +2 -2
- data/lib/br_danfe/danfe_lib/nfce_lib/header.rb +30 -16
- data/lib/br_danfe/danfe_lib/nfce_lib/key.rb +3 -3
- data/lib/br_danfe/danfe_lib/nfce_lib/nfce_identification.rb +3 -3
- data/lib/br_danfe/danfe_lib/nfce_lib/product_list.rb +44 -53
- data/lib/br_danfe/danfe_lib/nfce_lib/recipient.rb +1 -1
- data/lib/br_danfe/danfe_lib/nfce_lib/total_list.rb +16 -15
- data/lib/br_danfe/danfe_lib/nfe.rb +11 -9
- data/lib/br_danfe/danfe_lib/nfe_lib/dest.rb +1 -1
- data/lib/br_danfe/danfe_lib/nfe_lib/dup.rb +1 -2
- data/lib/br_danfe/danfe_lib/nfe_lib/emit_header.rb +5 -6
- data/lib/br_danfe/danfe_lib/nfe_lib/infadic.rb +2 -1
- data/lib/br_danfe/document_builder.rb +1 -1
- data/lib/br_danfe/helper.rb +8 -10
- data/lib/br_danfe/mdfe.rb +55 -0
- data/lib/br_danfe/mdfe_lib/authorization_protocol.rb +24 -0
- data/lib/br_danfe/mdfe_lib/document.rb +26 -0
- data/lib/br_danfe/mdfe_lib/drivers.rb +70 -0
- data/lib/br_danfe/mdfe_lib/fisco_control.rb +21 -0
- data/lib/br_danfe/mdfe_lib/header.rb +77 -0
- data/lib/br_danfe/mdfe_lib/mdfe_identification.rb +69 -0
- data/lib/br_danfe/mdfe_lib/notes.rb +94 -0
- data/lib/br_danfe/mdfe_lib/totalizer.rb +57 -0
- data/lib/br_danfe/mdfe_lib/vehicles.rb +80 -0
- data/lib/br_danfe/qr_code.rb +21 -0
- data/lib/br_danfe/version.rb +1 -1
- data/lib/br_danfe.rb +2 -2
- data/spec/br_danfe/danfe_lib/nfce_lib/footer_spec.rb +3 -2
- data/spec/br_danfe/danfe_lib/nfce_lib/header_spec.rb +6 -4
- data/spec/br_danfe/danfe_lib/nfce_lib/helper_spec.rb +2 -2
- data/spec/br_danfe/danfe_lib/nfce_lib/key_spec.rb +2 -2
- data/spec/br_danfe/danfe_lib/nfce_lib/nfce_identification_spec.rb +2 -2
- data/spec/br_danfe/danfe_lib/nfce_lib/recipient_spec.rb +10 -10
- data/spec/br_danfe/danfe_lib/nfce_lib/total_list_spec.rb +12 -12
- data/spec/br_danfe/danfe_lib/nfce_spec.rb +2 -1
- data/spec/br_danfe/danfe_lib/nfe_lib/cst_spec.rb +4 -4
- data/spec/br_danfe/danfe_lib/nfe_lib/dest_spec.rb +178 -178
- data/spec/br_danfe/danfe_lib/nfe_lib/det_body_spec.rb +274 -274
- data/spec/br_danfe/danfe_lib/nfe_lib/document_spec.rb +77 -77
- data/spec/br_danfe/danfe_lib/nfe_lib/dup_spec.rb +23 -23
- data/spec/br_danfe/danfe_lib/nfe_lib/emit_header_spec.rb +37 -37
- data/spec/br_danfe/danfe_lib/nfe_lib/helper_spec.rb +34 -34
- data/spec/br_danfe/danfe_lib/nfe_lib/icmstot_spec.rb +19 -19
- data/spec/br_danfe/danfe_lib/nfe_lib/infadic_spec.rb +240 -240
- data/spec/br_danfe/danfe_lib/nfe_lib/infadic_vol_spec.rb +3 -2
- data/spec/br_danfe/danfe_lib/nfe_lib/issqn_spec.rb +16 -16
- data/spec/br_danfe/danfe_lib/nfe_lib/ticket_spec.rb +13 -13
- data/spec/br_danfe/danfe_lib/nfe_lib/transp_spec.rb +76 -76
- data/spec/br_danfe/danfe_lib/nfe_lib/vol_spec.rb +40 -40
- data/spec/br_danfe/danfe_lib/nfe_lib/xprod_spec.rb +118 -118
- data/spec/br_danfe/danfe_spec.rb +2 -2
- data/spec/br_danfe/helper_spec.rb +26 -14
- data/spec/br_danfe/mdfe_lib/authorization_protocol_spec.rb +35 -0
- data/spec/br_danfe/mdfe_lib/document_spec.rb +20 -0
- data/spec/br_danfe/mdfe_lib/drivers_spec.rb +88 -0
- data/spec/br_danfe/mdfe_lib/fisco_control_spec.rb +69 -0
- data/spec/br_danfe/mdfe_lib/header_spec.rb +135 -0
- data/spec/br_danfe/mdfe_lib/mdfe_identification_spec.rb +104 -0
- data/spec/br_danfe/mdfe_lib/notes_spec.rb +97 -0
- data/spec/br_danfe/mdfe_lib/totalizer_spec.rb +63 -0
- data/spec/br_danfe/mdfe_lib/vehicles_spec.rb +66 -0
- data/spec/br_danfe/mdfe_spec.rb +45 -0
- data/spec/br_danfe/qr_code_spec.rb +31 -0
- data/spec/br_danfe/xml_spec.rb +6 -6
- data/spec/fixtures/mdfe/lib/document#render.pdf +0 -0
- data/spec/fixtures/mdfe/lib/document#text.align.pdf +0 -0
- data/spec/fixtures/mdfe/lib/document#text.pad.pdf +0 -0
- data/spec/fixtures/mdfe/lib/document#text.simple.pdf +0 -0
- data/spec/fixtures/mdfe/lib/document#text.size.pdf +0 -0
- data/spec/fixtures/mdfe/lib/document#text.style.pdf +0 -0
- data/spec/fixtures/mdfe/lib/fisco_control#barcode.pdf +0 -0
- data/spec/fixtures/mdfe/lib/fisco_control#without-barcode.pdf +0 -0
- data/spec/fixtures/mdfe/lib/header#render-qr-code.pdf +0 -0
- data/spec/fixtures/mdfe/lib/header#render-with_logo.pdf +0 -0
- data/spec/fixtures/mdfe/lib/header#render-without-qr-code.pdf +0 -0
- data/spec/fixtures/mdfe/lib/header#render-without_logo.pdf +0 -0
- data/spec/fixtures/mdfe/lib/mdfe-with-multiple-pages.pdf +1945 -0
- data/spec/fixtures/mdfe/lib/mdfe.fixture.pdf +1286 -0
- data/spec/fixtures/mdfe/lib/notes#render-big-aditional-information.pdf +1943 -0
- data/spec/fixtures/mdfe/lib/xml-mdfe-multiples-pages.xml +116 -0
- data/spec/fixtures/mdfe/lib/xml-mdfe.xml +250 -0
- data/spec/fixtures/nfce/lib/document#render.pdf +12 -23
- data/spec/fixtures/nfce/lib/footer#render-with_additional_information.pdf +0 -0
- data/spec/fixtures/nfce/lib/footer#render.pdf +0 -0
- data/spec/fixtures/nfce/lib/header#render-homologation.pdf +0 -0
- data/spec/fixtures/nfce/lib/header#render-long_name_with_logo.pdf +0 -0
- data/spec/fixtures/nfce/lib/header#render-long_name_without_logo.pdf +0 -0
- data/spec/fixtures/nfce/lib/header#render-short_name_with_logo.pdf +0 -0
- data/spec/fixtures/nfce/lib/header#render-short_name_without_logo.pdf +0 -0
- data/spec/fixtures/nfce/lib/key#render.pdf +0 -0
- data/spec/fixtures/nfce/lib/nfce_identification#render.pdf +0 -0
- data/spec/fixtures/nfce/lib/product_list#render-with_many_products.pdf +0 -0
- data/spec/fixtures/nfce/lib/product_list#render-with_many_products_and_long_names.pdf +0 -0
- data/spec/fixtures/nfce/lib/product_list#render-with_single_product.pdf +0 -0
- data/spec/fixtures/nfce/lib/product_list#render-with_single_product_and_long_name.pdf +0 -0
- data/spec/fixtures/nfce/lib/product_list_with_many_products_and_long_names.xml +2 -2
- data/spec/fixtures/nfce/lib/product_list_with_single_product_and_long_name.xml +1 -1
- data/spec/fixtures/nfce/lib/recipient#render-company.pdf +0 -0
- data/spec/fixtures/nfce/lib/recipient#render-consumer_without_document.pdf +0 -0
- data/spec/fixtures/nfce/lib/recipient#render-foreign.pdf +0 -0
- data/spec/fixtures/nfce/lib/recipient#render-individual.pdf +0 -0
- data/spec/fixtures/nfce/lib/recipient#render-unidentified_consumer.pdf +0 -0
- data/spec/fixtures/nfce/lib/total_list#does_not_render-payment_methods.pdf +0 -0
- data/spec/fixtures/nfce/lib/total_list#render-grouped_payment_methods.pdf +0 -0
- data/spec/fixtures/nfce/lib/total_list#render-totals.pdf +0 -0
- data/spec/fixtures/nfce/lib/total_list#render-without_payment.pdf +0 -0
- data/spec/fixtures/nfce/lib/total_list#render.pdf +0 -0
- data/spec/fixtures/nfce/v4.00/multiples_xmls_on_the_same_pdf.pdf +568 -447
- data/spec/fixtures/nfce/v4.00/nfce-unauthorized-hom.fixture.pdf +0 -0
- data/spec/fixtures/nfce/v4.00/nfce-unauthorized-prod.fixture.pdf +0 -0
- data/spec/fixtures/nfce/v4.00/rendered_nfce.fixture.pdf +0 -0
- data/spec/fixtures/nfce/v4.00/saved_nfce.fixture.pdf +0 -0
- data/spec/fixtures/qr_code/qr_code#render.pdf +0 -0
- data/spec/spec_helper.rb +1 -1
- metadata +118 -48
- data/lib/br_danfe/danfe_lib/nfce_lib/qr_code.rb +0 -25
- data/lib/br_danfe/danfe_lib/nfe_lib/cep.rb +0 -11
- data/spec/br_danfe/danfe_lib/nfce_lib/qr_code_spec.rb +0 -35
- data/spec/br_danfe/danfe_lib/nfe_lib/cep_spec.rb +0 -10
@@ -0,0 +1,116 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<mdfeProc xmlns="http://www.portalfiscal.inf.br/mdfe" versao="3.00">
|
3
|
+
<MDFe xmlns="http://www.portalfiscal.inf.br/mdfe">
|
4
|
+
<infMDFe Id="MDFe32210717781119000141580010000001211000000003" versao="3.00">
|
5
|
+
<ide>
|
6
|
+
<mod>58</mod>
|
7
|
+
<serie>1</serie>
|
8
|
+
<nMDF>121</nMDF>
|
9
|
+
<cMDF>00000000</cMDF>
|
10
|
+
<modal>1</modal>
|
11
|
+
<dhEmi>2021-07-01T17:30:00-03:00</dhEmi>
|
12
|
+
<UFIni>ES</UFIni>
|
13
|
+
<UFFim>ES</UFFim>
|
14
|
+
</ide>
|
15
|
+
<emit>
|
16
|
+
<CNPJ>17781119000141</CNPJ>
|
17
|
+
<IE>082942625</IE>
|
18
|
+
<xNome>VENTURIM AGROCRIATIVA LTDA EPP</xNome>
|
19
|
+
<xFant>VENTURIM CONSERVAS</xFant>
|
20
|
+
<enderEmit>
|
21
|
+
<xLgr>RODOVIA ES 473 KM 13</xLgr>
|
22
|
+
<nro>0</nro>
|
23
|
+
<xMun>VENDA NOVA DO IMIGRANTE</xMun>
|
24
|
+
<CEP>29375000</CEP>
|
25
|
+
<UF>ES</UF>
|
26
|
+
</enderEmit>
|
27
|
+
</emit>
|
28
|
+
<infModal versaoModal="3.00">
|
29
|
+
<rodo>
|
30
|
+
<infANTT/>
|
31
|
+
<veicTracao>
|
32
|
+
<placa>RQM8B64</placa>
|
33
|
+
<RENAVAM>01259587867</RENAVAM>
|
34
|
+
<condutor>
|
35
|
+
<xNome>EDUARDO DANIEL</xNome>
|
36
|
+
<CPF>11585756709</CPF>
|
37
|
+
</condutor>
|
38
|
+
</veicTracao>
|
39
|
+
<veicReboque>
|
40
|
+
<placa>RVA1B90</placa>
|
41
|
+
<RENAVAM>123456789</RENAVAM>
|
42
|
+
<condutor>
|
43
|
+
<xNome>JOAO DA SILVA</xNome>
|
44
|
+
<CPF>9876654312</CPF>
|
45
|
+
</condutor>
|
46
|
+
</veicReboque>
|
47
|
+
<veicReboque>
|
48
|
+
<placa>DFE4U78</placa>
|
49
|
+
<RENAVAM>045784572</RENAVAM>
|
50
|
+
<condutor>
|
51
|
+
<xNome>PEDRO DE SOUZA</xNome>
|
52
|
+
<CPF>9876654312</CPF>
|
53
|
+
</condutor>
|
54
|
+
</veicReboque>
|
55
|
+
<veicReboque>
|
56
|
+
<placa>OPS4F78</placa>
|
57
|
+
<RENAVAM>045784572</RENAVAM>
|
58
|
+
<condutor>
|
59
|
+
<xNome>GABRIEL DE JESUS</xNome>
|
60
|
+
<CPF>9876654312</CPF>
|
61
|
+
</condutor>
|
62
|
+
</veicReboque>
|
63
|
+
</rodo>
|
64
|
+
</infModal>
|
65
|
+
<tot>
|
66
|
+
<qNFe>10</qNFe>
|
67
|
+
<vCarga>8222.10</vCarga>
|
68
|
+
<cUnid>01</cUnid>
|
69
|
+
<qCarga>615.1400</qCarga>
|
70
|
+
</tot>
|
71
|
+
<autXML>
|
72
|
+
<CNPJ>04898488000177</CNPJ>
|
73
|
+
</autXML>
|
74
|
+
<infAdic>
|
75
|
+
<infAdFisco>Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
76
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
77
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
78
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
79
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
80
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
81
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma c</infAdFisco>
|
82
|
+
<infCpl>Exemplo de observação para o Contribuinte alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
83
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
84
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
85
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
86
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
87
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
88
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
89
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
90
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
91
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
92
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
93
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
94
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
95
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
96
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa
|
97
|
+
Exemplo de observação para o Fisco alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa alguma coisa a</infCpl>
|
98
|
+
</infAdic>
|
99
|
+
</infMDFe>
|
100
|
+
<infMDFeSupl>
|
101
|
+
<qrCodMDFe>https://dfe-portal.svrs.rs.gov.br/mdfe/QRCode?chMDFe=32210717781119000141580010000001211000000003&tpAmb=1</qrCodMDFe>
|
102
|
+
</infMDFeSupl>
|
103
|
+
</MDFe>
|
104
|
+
<protMDFe versao="3.00" xmlns="http://www.portalfiscal.inf.br/mdfe">
|
105
|
+
<infProt Id="MDFe932210002534081">
|
106
|
+
<tpAmb>1</tpAmb>
|
107
|
+
<verAplic>RS20210607092041</verAplic>
|
108
|
+
<chMDFe>32210717781119000141580010000001211000000003</chMDFe>
|
109
|
+
<dhRecbto>2021-07-01T17:39:16-03:00</dhRecbto>
|
110
|
+
<nProt>932210002534081</nProt>
|
111
|
+
<digVal>gLsHvKfPe3saxayj/JruXLmwRDM=</digVal>
|
112
|
+
<cStat>100</cStat>
|
113
|
+
<xMotivo>Autorizado o uso do MDF-e</xMotivo>
|
114
|
+
</infProt>
|
115
|
+
</protMDFe>
|
116
|
+
</mdfeProc>
|
@@ -0,0 +1,250 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<mdfeProc xmlns="http://www.portalfiscal.inf.br/mdfe" versao="3.00">
|
3
|
+
<MDFe xmlns="http://www.portalfiscal.inf.br/mdfe">
|
4
|
+
<infMDFe Id="MDFe32210717781119000141580010000001211000000003" versao="3.00">
|
5
|
+
<ide>
|
6
|
+
<cUF>32</cUF>
|
7
|
+
<tpAmb>1</tpAmb>
|
8
|
+
<tpEmit>2</tpEmit>
|
9
|
+
<mod>58</mod>
|
10
|
+
<serie>1</serie>
|
11
|
+
<nMDF>121</nMDF>
|
12
|
+
<cMDF>00000000</cMDF>
|
13
|
+
<cDV>3</cDV>
|
14
|
+
<modal>1</modal>
|
15
|
+
<dhEmi>2021-07-01T17:30:00-03:00</dhEmi>
|
16
|
+
<tpEmis>1</tpEmis>
|
17
|
+
<procEmi>0</procEmi>
|
18
|
+
<verProc>hivelog-mdfe-0.1.0</verProc>
|
19
|
+
<UFIni>ES</UFIni>
|
20
|
+
<UFFim>ES</UFFim>
|
21
|
+
<infMunCarrega>
|
22
|
+
<cMunCarrega>3205069</cMunCarrega>
|
23
|
+
<xMunCarrega>VENDA NOVA DO IMIGRANTE</xMunCarrega>
|
24
|
+
</infMunCarrega>
|
25
|
+
<dhIniViagem>2021-07-01T17:30:00-03:00</dhIniViagem>
|
26
|
+
</ide>
|
27
|
+
<emit>
|
28
|
+
<CNPJ>17781119000141</CNPJ>
|
29
|
+
<IE>082942625</IE>
|
30
|
+
<xNome>VENTURIM AGROCRIATIVA LTDA EPP</xNome>
|
31
|
+
<xFant>VENTURIM CONSERVAS</xFant>
|
32
|
+
<enderEmit>
|
33
|
+
<xLgr>RODOVIA ES 473 KM 13</xLgr>
|
34
|
+
<nro>0</nro>
|
35
|
+
<xCpl>ZONA RURAL</xCpl>
|
36
|
+
<xBairro>SAO JOAO DE VICOSA</xBairro>
|
37
|
+
<cMun>3205069</cMun>
|
38
|
+
<xMun>VENDA NOVA DO IMIGRANTE</xMun>
|
39
|
+
<CEP>29375000</CEP>
|
40
|
+
<UF>ES</UF>
|
41
|
+
<fone>2835466272</fone>
|
42
|
+
<email>VENTURIMCONSERVAS@GMAIL.COM</email>
|
43
|
+
</enderEmit>
|
44
|
+
</emit>
|
45
|
+
<infModal versaoModal="3.00">
|
46
|
+
<rodo>
|
47
|
+
<infANTT/>
|
48
|
+
<veicTracao>
|
49
|
+
<placa>RQM8B64</placa>
|
50
|
+
<RENAVAM>01259587867</RENAVAM>
|
51
|
+
<tara>0</tara>
|
52
|
+
<capKG>1500</capKG>
|
53
|
+
<capM3>0</capM3>
|
54
|
+
<condutor>
|
55
|
+
<xNome>EDUARDO DANIEL</xNome>
|
56
|
+
<CPF>11585756709</CPF>
|
57
|
+
</condutor>
|
58
|
+
<tpRod>04</tpRod>
|
59
|
+
<tpCar>02</tpCar>
|
60
|
+
<UF>ES</UF>
|
61
|
+
</veicTracao>
|
62
|
+
<veicReboque>
|
63
|
+
<placa>RVA1B90</placa>
|
64
|
+
<RENAVAM>123456789</RENAVAM>
|
65
|
+
<tara>0</tara>
|
66
|
+
<capKG>1500</capKG>
|
67
|
+
<capM3>0</capM3>
|
68
|
+
<condutor>
|
69
|
+
<xNome>JOAO DA SILVA</xNome>
|
70
|
+
<CPF>9876654312</CPF>
|
71
|
+
</condutor>
|
72
|
+
<tpRod>04</tpRod>
|
73
|
+
<tpCar>02</tpCar>
|
74
|
+
<UF>SC</UF>
|
75
|
+
</veicReboque>
|
76
|
+
<veicReboque>
|
77
|
+
<placa>DFE4U78</placa>
|
78
|
+
<RENAVAM>045784572</RENAVAM>
|
79
|
+
<tara>0</tara>
|
80
|
+
<capKG>1500</capKG>
|
81
|
+
<capM3>0</capM3>
|
82
|
+
<condutor>
|
83
|
+
<xNome>PEDRO DE SOUZA</xNome>
|
84
|
+
<CPF>9876654312</CPF>
|
85
|
+
</condutor>
|
86
|
+
<tpRod>04</tpRod>
|
87
|
+
<tpCar>02</tpCar>
|
88
|
+
<UF>SC</UF>
|
89
|
+
</veicReboque>
|
90
|
+
<veicReboque>
|
91
|
+
<placa>OPS4F78</placa>
|
92
|
+
<RENAVAM>045784572</RENAVAM>
|
93
|
+
<tara>0</tara>
|
94
|
+
<capKG>1500</capKG>
|
95
|
+
<capM3>0</capM3>
|
96
|
+
<condutor>
|
97
|
+
<xNome>GABRIEL DE JESUS</xNome>
|
98
|
+
<CPF>9876654312</CPF>
|
99
|
+
</condutor>
|
100
|
+
<tpRod>04</tpRod>
|
101
|
+
<tpCar>02</tpCar>
|
102
|
+
<UF>SC</UF>
|
103
|
+
</veicReboque>
|
104
|
+
</rodo>
|
105
|
+
</infModal>
|
106
|
+
<infDoc>
|
107
|
+
<infMunDescarga>
|
108
|
+
<cMunDescarga>3205069</cMunDescarga>
|
109
|
+
<xMunDescarga>VENDA NOVA DO IMIGRANTE</xMunDescarga>
|
110
|
+
<infNFe>
|
111
|
+
<chNFe>32210717781119000141550010000119601182910239</chNFe>
|
112
|
+
</infNFe>
|
113
|
+
</infMunDescarga>
|
114
|
+
<infMunDescarga>
|
115
|
+
<cMunDescarga>3201209</cMunDescarga>
|
116
|
+
<xMunDescarga>CACHOEIRO DE ITAPEMIRIM</xMunDescarga>
|
117
|
+
<infNFe>
|
118
|
+
<chNFe>32210717781119000141550010000119611182910236</chNFe>
|
119
|
+
</infNFe>
|
120
|
+
<infNFe>
|
121
|
+
<chNFe>32210717781119000141550010000119631182910230</chNFe>
|
122
|
+
</infNFe>
|
123
|
+
<infNFe>
|
124
|
+
<chNFe>32210717781119000141550010000119641182910238</chNFe>
|
125
|
+
</infNFe>
|
126
|
+
<infNFe>
|
127
|
+
<chNFe>32210717781119000141550010000119671182910230</chNFe>
|
128
|
+
</infNFe>
|
129
|
+
<infNFe>
|
130
|
+
<chNFe>32210717781119000141550010000119681182910237</chNFe>
|
131
|
+
</infNFe>
|
132
|
+
</infMunDescarga>
|
133
|
+
<infMunDescarga>
|
134
|
+
<cMunDescarga>3203403</cMunDescarga>
|
135
|
+
<xMunDescarga>MIMOSO DO SUL</xMunDescarga>
|
136
|
+
<infNFe>
|
137
|
+
<chNFe>32210717781119000141550010000119621182910233</chNFe>
|
138
|
+
</infNFe>
|
139
|
+
</infMunDescarga>
|
140
|
+
<infMunDescarga>
|
141
|
+
<cMunDescarga>3201407</cMunDescarga>
|
142
|
+
<xMunDescarga>CASTELO</xMunDescarga>
|
143
|
+
<infNFe>
|
144
|
+
<chNFe>32210717781119000141550010000119651182910235</chNFe>
|
145
|
+
</infNFe>
|
146
|
+
<infNFe>
|
147
|
+
<chNFe>32210717781119000141550010000119691182910234</chNFe>
|
148
|
+
</infNFe>
|
149
|
+
</infMunDescarga>
|
150
|
+
<infMunDescarga>
|
151
|
+
<cMunDescarga>3204302</cMunDescarga>
|
152
|
+
<xMunDescarga>PRESIDENTE KENNEDY</xMunDescarga>
|
153
|
+
<infNFe>
|
154
|
+
<chNFe>32210717781119000141550010000119701182910235</chNFe>
|
155
|
+
</infNFe>
|
156
|
+
</infMunDescarga>
|
157
|
+
</infDoc>
|
158
|
+
<tot>
|
159
|
+
<qNFe>10</qNFe>
|
160
|
+
<vCarga>8222.10</vCarga>
|
161
|
+
<cUnid>01</cUnid>
|
162
|
+
<qCarga>615.1400</qCarga>
|
163
|
+
</tot>
|
164
|
+
<autXML>
|
165
|
+
<CNPJ>04898488000177</CNPJ>
|
166
|
+
</autXML>
|
167
|
+
<infAdic>
|
168
|
+
<infAdFisco>Exemplo de observação para o Fisco</infAdFisco>
|
169
|
+
<infCpl>Exemplo de observação para o Contribuinte</infCpl>
|
170
|
+
</infAdic>
|
171
|
+
<infRespTec>
|
172
|
+
<CNPJ>07960929000101</CNPJ>
|
173
|
+
<xContato>Hivelog Soluções em Tecnologia da Informação.</xContato>
|
174
|
+
<email>desenvolvimento@hivecloud.com.br</email>
|
175
|
+
<fone>8140628262</fone>
|
176
|
+
</infRespTec>
|
177
|
+
</infMDFe>
|
178
|
+
<infMDFeSupl>
|
179
|
+
<qrCodMDFe>https://dfe-portal.svrs.rs.gov.br/mdfe/QRCode?chMDFe=32210717781119000141580010000001211000000003&tpAmb=1</qrCodMDFe>
|
180
|
+
</infMDFeSupl>
|
181
|
+
<Signature xmlns="http://www.w3.org/2000/09/xmldsig#">
|
182
|
+
<SignedInfo>
|
183
|
+
<CanonicalizationMethod Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/>
|
184
|
+
<SignatureMethod Algorithm="http://www.w3.org/2000/09/xmldsig#rsa-sha1"/>
|
185
|
+
<Reference URI="#MDFe32210717781119000141580010000001211000000003">
|
186
|
+
<Transforms>
|
187
|
+
<Transform Algorithm="http://www.w3.org/2000/09/xmldsig#enveloped-signature"/>
|
188
|
+
<Transform Algorithm="http://www.w3.org/TR/2001/REC-xml-c14n-20010315"/>
|
189
|
+
</Transforms>
|
190
|
+
<DigestMethod Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
|
191
|
+
<DigestValue>gLsHvKfPe3saxayj/JruXLmwRDM=</DigestValue>
|
192
|
+
</Reference>
|
193
|
+
</SignedInfo>
|
194
|
+
<SignatureValue>pG5XoCc3nbhfVMk1G91ptTkX69nXGiKgL0NrhYRHfbnisS0KL9JP3/cKza+SxCiNCxGicP97cZoW
|
195
|
+
/shglzGBnW81fhy9IeZ5H4KCTJbV0IEbc5Z2Orj2fX7+SBfX/E4OAw4puQk7TOAAFRrMsjXFnOjP
|
196
|
+
DBpcM11i0XzixizrnBVL5JtmWDePx5PBCbjbeamCM+jNa5QjbNw8RKQGxZC5K4FnwmX8wW0HPujk
|
197
|
+
0pYkbSRR7UIFjJSXnjgYbRyH/Ojm5wTGDv8JxzV4HN5XtIeggrJuh0enQIAEhMd/WW/0Ne5jj3VS
|
198
|
+
X3LPy3cLWQPINdLfIAm7v1sQAtifgGcfINmsjw==</SignatureValue>
|
199
|
+
<KeyInfo>
|
200
|
+
<X509Data>
|
201
|
+
<X509Certificate>MIIHUDCCBTigAwIBAgIIQXshAShT68AwDQYJKoZIhvcNAQELBQAwWTELMAkGA1UEBhMCQlIxEzAR
|
202
|
+
BgNVBAoTCklDUC1CcmFzaWwxFTATBgNVBAsTDEFDIFNPTFVUSSB2NTEeMBwGA1UEAxMVQUMgU09M
|
203
|
+
VVRJIE11bHRpcGxhIHY1MB4XDTIxMDEyOTE4MTgwMFoXDTIyMDEyOTE4MTgwMFowge8xCzAJBgNV
|
204
|
+
BAYTAkJSMRMwEQYDVQQKEwpJQ1AtQnJhc2lsMQswCQYDVQQIEwJFUzEgMB4GA1UEBxMXVmVuZGEg
|
205
|
+
Tm92YSBkbyBJbWlncmFudGUxHjAcBgNVBAsTFUFDIFNPTFVUSSBNdWx0aXBsYSB2NTEXMBUGA1UE
|
206
|
+
CxMOMjkxMDgwOTEwMDAxNjUxEzARBgNVBAsTClByZXNlbmNpYWwxGjAYBgNVBAsTEUNlcnRpZmlj
|
207
|
+
YWRvIFBKIEExMTIwMAYDVQQDEylWRU5UVVJJTSBBR1JPQ1JJQVRJVkEgTFREQToxNzc4MTExOTAw
|
208
|
+
MDE0MTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMPI1XoIJEbr2Xi+4uVc6jLrTeKV
|
209
|
+
jnho2f0f0Kx+z+n+kkcQx0BXdN/ZnR/BXtqgixoBOnnSUx1VIlNOsxaXHY0t77ZNax34US7elpjf
|
210
|
+
P8FXlQuYYiI3C7mso7o29x17dFp0+D0888DCoOMGcItWQPwi/5/9W1m44CWgTrhOLZ2eY15Lk563
|
211
|
+
V1LJ4g4FoPS/xx3mFVstBHX5emsuHSzmf9vMuvW1bCV4AqdNFCwadVjOYxYqWzM17q2zxyfQggTB
|
212
|
+
goNjWFo32i6ko2oOiPWP3nPSNBoUWimp5hMPPCg02vgzWuFYk9BiKz1RxSkLDpKwC80wO+S827Ou
|
213
|
+
0M3YvRmPZQ8CAwEAAaOCAoMwggJ/MAkGA1UdEwQCMAAwHwYDVR0jBBgwFoAUxVLtJYAJ35yCyJ9H
|
214
|
+
xt20XzHdubEwVAYIKwYBBQUHAQEESDBGMEQGCCsGAQUFBzAChjhodHRwOi8vY2NkLmFjc29sdXRp
|
215
|
+
LmNvbS5ici9sY3IvYWMtc29sdXRpLW11bHRpcGxhLXY1LnA3YjCBvgYDVR0RBIG2MIGzgRxjb25z
|
216
|
+
ZXJ2YXN2ZW5kYW5vdmFAZ21haWwuY29toCUGBWBMAQMCoBwTGkxPUkVOWkEgRkFMQ0hFVFRPIFZF
|
217
|
+
TlRVUklNoBkGBWBMAQMDoBATDjE3NzgxMTE5MDAwMTQxoDgGBWBMAQMEoC8TLTA2MDgxOTg5MTMw
|
218
|
+
NDU1NjQ3NjMwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMKAXBgVgTAEDB6AOEwwwMDAwMDAwMDAw
|
219
|
+
MDAwXQYDVR0gBFYwVDBSBgZgTAECASYwSDBGBggrBgEFBQcCARY6aHR0cDovL2NjZC5hY3NvbHV0
|
220
|
+
aS5jb20uYnIvZG9jcy9kcGMtYWMtc29sdXRpLW11bHRpcGxhLnBkZjAdBgNVHSUEFjAUBggrBgEF
|
221
|
+
BQcDAgYIKwYBBQUHAwQwgYwGA1UdHwSBhDCBgTA+oDygOoY4aHR0cDovL2NjZC5hY3NvbHV0aS5j
|
222
|
+
b20uYnIvbGNyL2FjLXNvbHV0aS1tdWx0aXBsYS12NS5jcmwwP6A9oDuGOWh0dHA6Ly9jY2QyLmFj
|
223
|
+
c29sdXRpLmNvbS5ici9sY3IvYWMtc29sdXRpLW11bHRpcGxhLXY1LmNybDAdBgNVHQ4EFgQUrp4N
|
224
|
+
Lavrr3l4CWS5uA1vCEdazF4wDgYDVR0PAQH/BAQDAgXgMA0GCSqGSIb3DQEBCwUAA4ICAQCNZY0z
|
225
|
+
sIgFoFvqh41wabo9CVzwYtftczCCTo3xuk3NSx7MHOpd+mhN9Y+HWJCdcXLaLk4+ds3PhX9ZwOzD
|
226
|
+
K8DXPiI//tcYgf+aEhJxfZKIGkrOUVNNCtD1986Ih09pWLdkkmfISYE6Jypm7UyuV0P7F9N9DweT
|
227
|
+
9Qp5n3K1GobCIcEdBiSppIabTWTHEmjI8hpf9CE8djYACwI/Dh686t1DL33kfiw+0vHS6fDIttP6
|
228
|
+
XRpOXoBClF1y+lP91YCV/+p767jfKjdD6glRuSNrF8zxjO6b52YlwO0mm6wqChBkUuBxoCybxdE0
|
229
|
+
2bDjAybOdAcVihnUTu7DibIQQJu18bF9f/XYbmOHvxUErSAvyW72/ZRolzr21z2RS0vrqse2RtpL
|
230
|
+
+pkfnowU3PA6SJpHjkd6Qc887E7jveKwHdq3tCqk4XCfl7sKa1rF/h7dSZpJ/m/gSMZy00jtX5TU
|
231
|
+
dTxXcYSrLfpWtJAvFMePQZ3BNADHT/hd5SOanS1gN9qf213iQVMu9+wHCRg24UoZJmhXHsHrx2h7
|
232
|
+
AEy5mOweDLL3VsO9NdWmce58VjOrvMsP3MlE8WSSEcLbm7XerYtOgTDYHYhVPo7xNvKpI0jsiGH9
|
233
|
+
mGq0jwS+S+/STyaaAVQ0UOZQ9/MzDIwo9GRuTlZCTyh99KtSej3BF3oPfBajnY32Oc71WA==</X509Certificate>
|
234
|
+
</X509Data>
|
235
|
+
</KeyInfo>
|
236
|
+
</Signature>
|
237
|
+
</MDFe>
|
238
|
+
<protMDFe versao="3.00" xmlns="http://www.portalfiscal.inf.br/mdfe">
|
239
|
+
<infProt Id="MDFe932210002534081">
|
240
|
+
<tpAmb>1</tpAmb>
|
241
|
+
<verAplic>RS20210607092041</verAplic>
|
242
|
+
<chMDFe>32210717781119000141580010000001211000000003</chMDFe>
|
243
|
+
<dhRecbto>2021-07-01T17:39:16-03:00</dhRecbto>
|
244
|
+
<nProt>932210002534081</nProt>
|
245
|
+
<digVal>gLsHvKfPe3saxayj/JruXLmwRDM=</digVal>
|
246
|
+
<cStat>100</cStat>
|
247
|
+
<xMotivo>Autorizado o uso do MDF-e</xMotivo>
|
248
|
+
</infProt>
|
249
|
+
</protMDFe>
|
250
|
+
</mdfeProc>
|
@@ -13,20 +13,18 @@ endobj
|
|
13
13
|
3 0 obj
|
14
14
|
<< /Type /Pages
|
15
15
|
/Count 2
|
16
|
-
/Kids [5 0 R
|
16
|
+
/Kids [5 0 R 7 0 R]
|
17
17
|
>>
|
18
18
|
endobj
|
19
19
|
4 0 obj
|
20
|
-
<< /Length
|
20
|
+
<< /Length 38
|
21
21
|
>>
|
22
22
|
stream
|
23
23
|
q
|
24
24
|
0.3 w
|
25
25
|
|
26
26
|
BT
|
27
|
-
8.50394 38.
|
28
|
-
/F1.0 6 Tf
|
29
|
-
<> Tj
|
27
|
+
8.50394 38.36169 Td
|
30
28
|
ET
|
31
29
|
|
32
30
|
Q
|
@@ -43,19 +41,11 @@ endobj
|
|
43
41
|
/ArtBox [0 0 226.77165 51.02362]
|
44
42
|
/Contents 4 0 R
|
45
43
|
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
46
|
-
/Font <<
|
47
|
-
>>
|
44
|
+
/Font << >>
|
48
45
|
>>
|
49
46
|
>>
|
50
47
|
endobj
|
51
48
|
6 0 obj
|
52
|
-
<< /Type /Font
|
53
|
-
/Subtype /Type1
|
54
|
-
/BaseFont /Courier
|
55
|
-
/Encoding /WinAnsiEncoding
|
56
|
-
>>
|
57
|
-
endobj
|
58
|
-
7 0 obj
|
59
49
|
<< /Length 10
|
60
50
|
>>
|
61
51
|
stream
|
@@ -65,7 +55,7 @@ Q
|
|
65
55
|
|
66
56
|
endstream
|
67
57
|
endobj
|
68
|
-
|
58
|
+
7 0 obj
|
69
59
|
<< /Type /Page
|
70
60
|
/Parent 3 0 R
|
71
61
|
/MediaBox [0 0 226.77165 51.02362]
|
@@ -73,27 +63,26 @@ endobj
|
|
73
63
|
/BleedBox [0 0 226.77165 51.02362]
|
74
64
|
/TrimBox [0 0 226.77165 51.02362]
|
75
65
|
/ArtBox [0 0 226.77165 51.02362]
|
76
|
-
/Contents
|
66
|
+
/Contents 6 0 R
|
77
67
|
/Resources << /ProcSet [/PDF /Text /ImageB /ImageC /ImageI]
|
78
68
|
>>
|
79
69
|
>>
|
80
70
|
endobj
|
81
71
|
xref
|
82
|
-
0
|
72
|
+
0 8
|
83
73
|
0000000000 65535 f
|
84
74
|
0000000015 00000 n
|
85
75
|
0000000109 00000 n
|
86
76
|
0000000158 00000 n
|
87
77
|
0000000221 00000 n
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
0000000802 00000 n
|
78
|
+
0000000309 00000 n
|
79
|
+
0000000618 00000 n
|
80
|
+
0000000678 00000 n
|
92
81
|
trailer
|
93
|
-
<< /Size
|
82
|
+
<< /Size 8
|
94
83
|
/Root 2 0 R
|
95
84
|
/Info 1 0 R
|
96
85
|
>>
|
97
86
|
startxref
|
98
|
-
|
87
|
+
975
|
99
88
|
%%EOF
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -64,7 +64,7 @@
|
|
64
64
|
<prod>
|
65
65
|
<cProd>1173</cProd>
|
66
66
|
<cEAN>568754456745</cEAN>
|
67
|
-
<xProd>Abraçadeira with a larger name
|
67
|
+
<xProd>Abraçadeira de metal with a larger name truncated</xProd>
|
68
68
|
<NCM>01022990</NCM>
|
69
69
|
<CFOP>5101</CFOP>
|
70
70
|
<uCom>UN</uCom>
|
@@ -150,7 +150,7 @@
|
|
150
150
|
<prod>
|
151
151
|
<cProd>1173</cProd>
|
152
152
|
<cEAN>568754456745</cEAN>
|
153
|
-
<xProd>Abraçadeira with a larger name
|
153
|
+
<xProd>Abraçadeira de metal with a larger name truncated</xProd>
|
154
154
|
<NCM>01022990</NCM>
|
155
155
|
<CFOP>5101</CFOP>
|
156
156
|
<uCom>UN</uCom>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|