Skip to content

Commit 516cf0d

Browse files
Merge pull request #1573 from MauricioSuporte/master
Reincluído projeto do QuestPdf na solução
2 parents 290b9d0 + f43b575 commit 516cf0d

16 files changed

+1938
-0
lines changed
269 KB
Binary file not shown.

NFe.Danfe.QuestPdf/ImpressaoEventoNfe/EventoNfeDocument.cs

Lines changed: 654 additions & 0 deletions
Large diffs are not rendered by default.

NFe.Danfe.QuestPdf/ImpressaoNfce/DanfeNfceDocument.cs

Lines changed: 564 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
using System.ComponentModel;
2+
3+
namespace NFe.Danfe.QuestPdf.ImpressaoNfce;
4+
5+
public enum TamanhoImpressao
6+
{
7+
[Description("Impressão 80mm")]
8+
Impressao80 = 1,
9+
10+
[Description("Impressão 72mm")]
11+
Impressao72 = 2,
12+
13+
[Description("Impressão 50mm")]
14+
Impressao50 = 3
15+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace NFe.Danfe.QuestPdf.Models;
2+
3+
public class EmpresaModel
4+
{
5+
public string RazaoSocial { get; set; }
6+
public string Cnpj { get; set; }
7+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
namespace NFe.Danfe.QuestPdf.Models;
2+
3+
public class NfceInutilizacaoModel
4+
{
5+
public DateTime InutilizacaoEm { get; set; }
6+
public string DescricaoModelo { get; set; }
7+
public int Serie { get; set; }
8+
public int NumeroInicial { get; set; }
9+
public int NumeroFinal { get; set; }
10+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
namespace NFe.Danfe.QuestPdf.Models;
2+
3+
public class NfceResumidaModel
4+
{
5+
public DateTime AutorizacaoEm { get; set; }
6+
public string Situacao { get; set; }
7+
public int Serie { get; set; }
8+
public int NumeroFiscal { get; set; }
9+
public string Chave { get; set; }
10+
public decimal ValorTotal { get; set; }
11+
}
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
namespace NFe.Danfe.QuestPdf.Models;
2+
3+
public class NfeInutilizadaModel
4+
{
5+
public DateTime InutilizacaoEm { get; set; }
6+
public string DescricaoModelo { get; set; }
7+
public int Serie { get; set; }
8+
public int NumeroInicial { get; set; }
9+
public int NumeroFinal { get; set; }
10+
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
namespace NFe.Danfe.QuestPdf.Models;
2+
3+
public class NfeResumidaModel
4+
{
5+
public DateTime AutorizacaoEm { get; set; }
6+
public string Situacao { get; set; }
7+
public int Serie { get; set; }
8+
public int NumeroFiscal { get; set; }
9+
public string Chave { get; set; }
10+
public decimal ValorTotal { get; set; }
11+
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
namespace NFe.Danfe.QuestPdf.Models;
2+
3+
public class PeriodoModel
4+
{
5+
public DateOnly DataInicial { get; set; }
6+
public DateOnly DataFinal { get; set; }
7+
}

0 commit comments

Comments
 (0)