From c516a9a460ad35e8263297aba9a43472d3d84c2e Mon Sep 17 00:00:00 2001 From: Francimar Alves Date: Mon, 11 Sep 2023 21:06:46 -0300 Subject: [PATCH] =?UTF-8?q?fix(infAdProd):=20n=C3=A3o=20adiciona=20tag=20i?= =?UTF-8?q?nfAdProd=20vazia?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/NFe/Entity/Produto.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/NFe/Entity/Produto.php b/src/NFe/Entity/Produto.php index acceedf..7d4c969 100644 --- a/src/NFe/Entity/Produto.php +++ b/src/NFe/Entity/Produto.php @@ -639,7 +639,9 @@ public static function getInformacoesProduto($tributos) public static function addNodeInformacoes($tributos, $element, $name = null) { $texto = Produto::getInformacoesProduto($tributos); - Util::appendNode($element, is_null($name) ? 'infAdProd' : $name, $texto); + if (! is_null($texto)) { + Util::appendNode($element, is_null($name) ? 'infAdProd' : $name, $texto); + } return $texto; }