If you have an attribute of the type "Text field" which is defined by your customer, the following problem can show up.
The customer inserts a special character (e.g. von <0.05% = n.d.) in the text field.
The special characters are output and understood by TCPPDF as HTML characters.
Therefore the product data is not outputed in the document.
Go to the iso_collection_invoice.html5 template:
Replace the following code
<?= $this->attributeValue($name, $value, ['html'=>true, 'item'=>$item['item']]) ?>
through
<?= htmlentities($this->attributeValue($name, $value, ['html'=>true, 'item'=>$item['item']])) ?>
If you have an attribute of the type "Text field" which is defined by your customer, the following problem can show up.
The customer inserts a special character (e.g. von <0.05% = n.d.) in the text field.
The special characters are output and understood by TCPPDF as HTML characters.
Therefore the product data is not outputed in the document.
Go to the iso_collection_invoice.html5 template:
Replace the following code
<?= $this->attributeValue($name, $value, ['html'=>true, 'item'=>$item['item']]) ?>through
<?= htmlentities($this->attributeValue($name, $value, ['html'=>true, 'item'=>$item['item']])) ?>