We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 71ce3fa commit 170d029Copy full SHA for 170d029
app/code/Magento/Sales/Model/Order/Pdf/Items/Invoice/DefaultInvoice.php
@@ -127,7 +127,8 @@ public function draw()
127
'feed' => 35,
128
];
129
130
- if ($option['value']) {
+ // Checking if option value is null not as empty
131
+ if ($option['value']!= null) {
132
if (isset($option['print_value'])) {
133
$printValue = $option['print_value'];
134
} else {
app/code/Magento/Sales/Model/Order/Pdf/Items/Shipment/DefaultShipment.php
@@ -89,7 +89,8 @@ public function draw()
89
90
91
// draw options value
92
93
94
$printValue = isset(
95
$option['print_value']
96
) ? $option['print_value'] : $this->filterManager->stripTags(
0 commit comments