Skip to content

Commit

Permalink
Update Make.php
Browse files Browse the repository at this point in the history
chore: correção não iria retornar o valor e sim um 'true'
  • Loading branch information
nagahshi authored Sep 11, 2024
1 parent 8c50fe8 commit 1629887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Make.php
Original file line number Diff line number Diff line change
Expand Up @@ -4770,7 +4770,7 @@ public function tagICMSSN(stdClass $std): DOMElement
$this->stdTot->vFCPST += (float) !empty($std->vFCPST) ? $std->vFCPST : 0;
$this->stdTot->vFCPSTRet += (float) !empty($std->vFCPSTRet) ? $std->vFCPSTRet : 0;

$CRT = (isset($this->emit) && $this->emit->getElementsByTagName("CRT")->item(0)->nodeValue) ?? null;
$CRT = isset($this->emit) ? $this->emit->getElementsByTagName("CRT")->item(0)->nodeValue : null;
$allowEmptyOrig = $CRT == 4 && in_array($std->CSOSN, [
'102', '103', '300', '400', '900',
]);
Expand Down

0 comments on commit 1629887

Please sign in to comment.