Skip to content

Commit

Permalink
- Ajustes de condicional
Browse files Browse the repository at this point in the history
  • Loading branch information
AgnaldoSilva0 committed Mar 25, 2024
1 parent f13ee9a commit 9757324
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions NFe.Danfe.AppTeste.Fast/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ private void BtnNfeDanfeA4_Click(object sender, RoutedEventArgs e)
configuracaoDanfeNfe: new ConfiguracaoDanfeNfe()
{
Logomarca = _configuracoes.ConfiguracaoDanfeNfce.Logomarca,
DuasLinhas = RdbDuasLinhas.IsChecked == true || RdbCompleto.IsChecked == true ? true : false,
DuasLinhas = RdbDuasLinhas.IsChecked == true || RdbCompleto.IsChecked == true,
DocumentoCancelado = ChbCancelado.IsChecked ?? false,
QuebrarLinhasObservacao = _configuracoes.ConfiguracaoDanfeNfe.QuebrarLinhasObservacao,
ExibirResumoCanhoto = _configuracoes.ConfiguracaoDanfeNfe.ExibirResumoCanhoto,
Expand Down Expand Up @@ -228,7 +228,7 @@ private void btnEventoNFe_Click(object sender, RoutedEventArgs e)

#region Abre a visualização do relatório para impressão
var danfe = new DanfeFrEvento(proc, procEvento, new ConfiguracaoDanfeNfe(_configuracoes.ConfiguracaoDanfeNfce.Logomarca,
RdbDuasLinhas.IsChecked == true || RdbCompleto.IsChecked == true ? true : false,
RdbDuasLinhas.IsChecked == true || RdbCompleto.IsChecked == true,
ChbCancelado.IsChecked ?? false),
"NOME DA SOFTWARE HOUSE");
danfe.Visualizar();
Expand Down Expand Up @@ -327,7 +327,7 @@ private void BtnNFeSimplificado_Click(object sender, RoutedEventArgs e)
configuracaoDanfeNfe: new ConfiguracaoDanfeNfe()
{
Logomarca = _configuracoes.ConfiguracaoDanfeNfce.Logomarca,
DuasLinhas = RdbDuasLinhas.IsChecked == true || RdbCompleto.IsChecked == true ? true : false,
DuasLinhas = RdbDuasLinhas.IsChecked == true || RdbCompleto.IsChecked == true,
DocumentoCancelado = ChbCancelado.IsChecked ?? false,
QuebrarLinhasObservacao = _configuracoes.ConfiguracaoDanfeNfe.QuebrarLinhasObservacao,
ExibirResumoCanhoto = _configuracoes.ConfiguracaoDanfeNfe.ExibirResumoCanhoto,
Expand Down

0 comments on commit 9757324

Please sign in to comment.