Skip to content

Commit

Permalink
Merge pull request #440 from Evernovak/patch-2
Browse files Browse the repository at this point in the history
Ajuste em campos não obrigatórios
  • Loading branch information
robmachado authored Jul 7, 2022
2 parents 8b6c76c + b02e692 commit d2d8c91
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Factories/Traits/TraitS2420.php
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,13 @@ protected function toNodeS100()
$this->dom->addChild(
$infoBenTermino,
"cnpjOrgaoSuc",
$this->std->cnpjorgaosuc,
!empty($this->std->cnpjorgaosuc) ? $this->std->cnpjorgaosuc : null,
false
);
$this->dom->addChild(
$infoBenTermino,
"novoCPF",
$this->std->novocpf,
!empty($this->std->novocpf) ?$this->std->novocpf : null,
false
);
$this->node->appendChild($infoBenTermino);
Expand Down

0 comments on commit d2d8c91

Please sign in to comment.