string = $string; parent::__construct( $context, $registry, $taxData, $filesystem, $filterManager, $resource, $resourceCollection, $data, $serializer ); } /** * Draw item line * * @return void * @SuppressWarnings(PHPMD.CyclomaticComplexity) * @SuppressWarnings(PHPMD.NPathComplexity) * @SuppressWarnings(PHPMD.ExcessiveMethodLength) */ public function draw() { $order = $this->getOrder(); $item = $this->getItem(); $pdf = $this->getPdf(); $page = $this->getPage(); $items = $this->getChildren($item); $prevOptionId = ''; $drawItems = []; $leftBound = 35; $rightBound = 565; foreach ($items as $childItem) { $x = $leftBound; $line = []; $attributes = $this->getSelectionAttributes($childItem); if (is_array($attributes)) { $optionId = $attributes['option_id']; } else { $optionId = 0; } if (!isset($drawItems[$optionId])) { $drawItems[$optionId] = ['lines' => [], 'height' => 15]; } // draw selection attributes if ($childItem->getOrderItem()->getParentItem()) { if ($prevOptionId != $attributes['option_id']) { $line[0] = [ 'font' => 'italic', 'text' => $this->string->split($attributes['option_label'], 38, true, true), 'feed' => $x, ]; $drawItems[$optionId] = ['lines' => [$line], 'height' => 15]; $line = []; $prevOptionId = $attributes['option_id']; } } // draw product titles if ($childItem->getOrderItem()->getParentItem()) { $feed = $x + 5; $name = $this->getValueHtml($childItem); } else { $feed = $x; $name = $childItem->getName(); } $line[] = ['text' => $this->string->split($name, 35, true, true), 'feed' => $feed]; $x += 220; // draw SKUs if (!$childItem->getOrderItem()->getParentItem()) { $text = []; foreach ($this->string->split($item->getSku(), 17) as $part) { $text[] = $part; } $line[] = ['text' => $text, 'feed' => $x]; } $x += 100; // draw prices if ($this->canShowPriceInfo($childItem)) { // draw Total(ex) $text = $order->formatPriceTxt($childItem->getRowTotal()); $line[] = ['text' => $text, 'feed' => $x, 'font' => 'bold', 'align' => 'right', 'width' => 50]; $x += 50; // draw Discount $text = $order->formatPriceTxt(-$childItem->getDiscountAmount()); $line[] = ['text' => $text, 'feed' => $x, 'font' => 'bold', 'align' => 'right', 'width' => 50]; $x += 50; // draw QTY $text = $childItem->getQty() * 1; $line[] = [ 'text' => $childItem->getQty() * 1, 'feed' => $x, 'font' => 'bold', 'align' => 'center', 'width' => 30, ]; $x += 30; // draw Tax $text = $order->formatPriceTxt($childItem->getTaxAmount()); $line[] = ['text' => $text, 'feed' => $x, 'font' => 'bold', 'align' => 'right', 'width' => 45]; $x += 45; // draw Total(inc) $text = $order->formatPriceTxt( $childItem->getRowTotal() + $childItem->getTaxAmount() - $childItem->getDiscountAmount() ); $line[] = ['text' => $text, 'feed' => $rightBound, 'font' => 'bold', 'align' => 'right']; } $drawItems[$optionId]['lines'][] = $line; } // custom options $options = $item->getOrderItem()->getProductOptions(); if ($options) { if (isset($options['options'])) { foreach ($options['options'] as $option) { $lines = []; $lines[][] = [ 'text' => $this->string->split( $this->filterManager->stripTags($option['label']), 40, true, true ), 'font' => 'italic', 'feed' => $leftBound, ]; if ($option['value']) { $text = []; $printValue = isset( $option['print_value'] ) ? $option['print_value'] : $this->filterManager->stripTags( $option['value'] ); $values = explode(', ', $printValue); foreach ($values as $value) { foreach ($this->string->split($value, 30, true, true) as $subValue) { $text[] = $subValue; } } $lines[][] = ['text' => $text, 'feed' => $leftBound + 5]; } $drawItems[] = ['lines' => $lines, 'height' => 15]; } } } $page = $pdf->drawLineBlocks($page, $drawItems, ['table_header' => true]); $this->setPage($page); } }