Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jefperito committed May 11, 2015
1 parent 89e24d4 commit f802210
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,13 @@ String xmlGerado = lote.toString();
### Convertendo nota XML em Java
Existe uma classe que pode receber um File/String e converter para um objeto NFNota, faça da seguinte forma:
```java
final NFNota nota = new NotaParser().paraObjeto(xmlNota);
final NFNota nota = new NotaParser().notaParaObjeto(xmlNota);
```
Ou para uma nota já processada:
```java
final NFNotaProcessada notaProcessada = new NotaParser().notaProcessadaParaObjeto(xmlNota);
```


### Armazenando notas autorizadas
Você precisará armazenar as notas autorizadas por questões legais e também para a geração do DANFE, uma forma de fazer é armazenar o xml das notas ao enviar o lote:
Expand Down

0 comments on commit f802210

Please sign in to comment.