@@ -79,17 +79,21 @@ discard block |
||
| 79 | 79 | $order = $orderProduct->getOrder(); |
| 80 | 80 | $product = $orderProduct->getProduct(); |
| 81 | 81 | |
| 82 | - if ($order->getOrderType() == 'sale' && !$orderProduct->getOutInventory()) |
|
| 83 | - $orderProduct->setOutInventory($product->getDefaultOutInventory()); |
|
| 82 | + if ($order->getOrderType() == 'sale' && !$orderProduct->getOutInventory()) { |
|
| 83 | + $orderProduct->setOutInventory($product->getDefaultOutInventory()); |
|
| 84 | + } |
|
| 84 | 85 | |
| 85 | - if ($order->getOrderType() == 'purchase' && !$orderProduct->getInInventory()) |
|
| 86 | - $orderProduct->setInInventory($product->getDefaultInInventory()); |
|
| 86 | + if ($order->getOrderType() == 'purchase' && !$orderProduct->getInInventory()) { |
|
| 87 | + $orderProduct->setInInventory($product->getDefaultInInventory()); |
|
| 88 | + } |
|
| 87 | 89 | } |
| 88 | 90 | |
| 89 | 91 | public function postPersist(OrderProduct $orderProduct) |
| 90 | 92 | { |
| 91 | 93 | |
| 92 | - if (!self::$mainProduct || !$this->request) return; |
|
| 94 | + if (!self::$mainProduct || !$this->request) { |
|
| 95 | + return; |
|
| 96 | + } |
|
| 93 | 97 | self::$mainProduct = false; |
| 94 | 98 | |
| 95 | 99 | $json = json_decode($this->request->getContent(), true); |
@@ -107,7 +111,9 @@ discard block |
||
| 107 | 111 | public function preRemove(OrderProduct $orderProduct) |
| 108 | 112 | { |
| 109 | 113 | |
| 110 | - if (!self::$mainProduct) return; |
|
| 114 | + if (!self::$mainProduct) { |
|
| 115 | + return; |
|
| 116 | + } |
|
| 111 | 117 | self::$mainProduct = false; |
| 112 | 118 | $order = $orderProduct->getOrder(); |
| 113 | 119 | $this->manager->persist($order->setPrice(0)); |
@@ -116,8 +122,9 @@ discard block |
||
| 116 | 122 | 'parentProduct' => $orderProduct->getProduct(), |
| 117 | 123 | ]); |
| 118 | 124 | |
| 119 | - foreach ($parentProducts as $parentProduct) |
|
| 120 | - $this->manager->remove($parentProduct); |
|
| 125 | + foreach ($parentProducts as $parentProduct) { |
|
| 126 | + $this->manager->remove($parentProduct); |
|
| 127 | + } |
|
| 121 | 128 | $this->manager->flush(); |
| 122 | 129 | |
| 123 | 130 | self::$calculateBefore[] = $order; |
@@ -47,14 +47,17 @@ discard block |
||
| 47 | 47 | |
| 48 | 48 | public function printOrder(Order $order, ?array $devices = []) |
| 49 | 49 | { |
| 50 | - if (empty($devices)) |
|
| 51 | - $devices = $this->configService->getConfig($order->getProvider(), 'order-print-devices', true); |
|
| 50 | + if (empty($devices)) { |
|
| 51 | + $devices = $this->configService->getConfig($order->getProvider(), 'order-print-devices', true); |
|
| 52 | + } |
|
| 52 | 53 | |
| 53 | - if ($devices) |
|
| 54 | - $devices = $this->deviceService->findDevices($devices); |
|
| 54 | + if ($devices) { |
|
| 55 | + $devices = $this->deviceService->findDevices($devices); |
|
| 56 | + } |
|
| 55 | 57 | |
| 56 | - foreach ($devices as $device) |
|
| 57 | - $this->generatePrintData($order, $device); |
|
| 58 | + foreach ($devices as $device) { |
|
| 59 | + $this->generatePrintData($order, $device); |
|
| 60 | + } |
|
| 58 | 61 | } |
| 59 | 62 | |
| 60 | 63 | private function printProduct($orderProduct, $indent = "- ") |
@@ -100,8 +103,9 @@ discard block |
||
| 100 | 103 | $this->printProduct($parentOrderProduct); |
| 101 | 104 | |
| 102 | 105 | $childs = $parentOrderProduct->getOrderProductComponents(); |
| 103 | - if (!empty($childs)) |
|
| 104 | - $this->printChildren($childs); |
|
| 106 | + if (!empty($childs)) { |
|
| 107 | + $this->printChildren($childs); |
|
| 108 | + } |
|
| 105 | 109 | |
| 106 | 110 | $this->printService->addLine('', '', '-'); |
| 107 | 111 | } |