@@ -84,8 +84,9 @@ |
||
84 | 84 | $this->printProduct($parentOrderProduct); |
85 | 85 | |
86 | 86 | $childs = $parentOrderProduct->getOrderProductComponents(); |
87 | - if (!empty($childs)) |
|
88 | - $this->printChildren($childs); |
|
87 | + if (!empty($childs)) { |
|
88 | + $this->printChildren($childs); |
|
89 | + } |
|
89 | 90 | |
90 | 91 | $this->printService->addLine('', '', '-'); |
91 | 92 | } |
@@ -49,8 +49,8 @@ discard block |
||
49 | 49 | |
50 | 50 | $quantity = $orderProduct->getQuantity(); |
51 | 51 | $this->printService->addLine( |
52 | - $indent . $quantity . ' X ' . $product->getProduct(), |
|
53 | - " R$ " . number_format($orderProduct->getTotal(), 2, ',', '.'), |
|
52 | + $indent.$quantity.' X '.$product->getProduct(), |
|
53 | + " R$ ".number_format($orderProduct->getTotal(), 2, ',', '.'), |
|
54 | 54 | '.' |
55 | 55 | ); |
56 | 56 | } |
@@ -68,10 +68,10 @@ discard block |
||
68 | 68 | } |
69 | 69 | |
70 | 70 | foreach ($groupedChildren as $groupName => $orderProductChildren) { |
71 | - $this->printService->addLine(strtoupper($groupName) . ":"); |
|
71 | + $this->printService->addLine(strtoupper($groupName).":"); |
|
72 | 72 | foreach ($orderProductChildren as $orderProductChild) { |
73 | 73 | $product = $orderProductChild->getProduct(); |
74 | - $this->printService->addLine(" - " . $product->getProduct()); |
|
74 | + $this->printService->addLine(" - ".$product->getProduct()); |
|
75 | 75 | } |
76 | 76 | } |
77 | 77 | $this->printService->addLine('', '', '-'); |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | foreach ($queues as $queueName => $orderProducts) { |
99 | 99 | $parentOrderProducts = array_filter($orderProducts, fn($orderProduct) => $orderProduct->getOrderProduct() === null); |
100 | 100 | if (!empty($parentOrderProducts)) { |
101 | - $this->printService->addLine(strtoupper($queueName) . ":"); |
|
101 | + $this->printService->addLine(strtoupper($queueName).":"); |
|
102 | 102 | $this->printQueueProducts($orderProducts); |
103 | 103 | $this->printService->addLine('', '', ' '); |
104 | 104 | } |
@@ -108,11 +108,11 @@ discard block |
||
108 | 108 | public function generatePrintData(Order $order, Device $device): Spool |
109 | 109 | { |
110 | 110 | |
111 | - $this->printService->addLine("PEDIDO #" . $order->getId()); |
|
111 | + $this->printService->addLine("PEDIDO #".$order->getId()); |
|
112 | 112 | $this->printService->addLine($order->getOrderDate()->format('d/m/Y H:i')); |
113 | 113 | $client = $order->getClient(); |
114 | 114 | $this->printService->addLine(($client !== null ? $client->getName() : 'Não informado')); |
115 | - $this->printService->addLine("R$ " . number_format($order->getPrice(), 2, ',', '.')); |
|
115 | + $this->printService->addLine("R$ ".number_format($order->getPrice(), 2, ',', '.')); |
|
116 | 116 | $this->printService->addLine("", "", "-"); |
117 | 117 | $queues = $this->getQueues($order); |
118 | 118 |
@@ -55,10 +55,10 @@ discard block |
||
55 | 55 | $this->orderProductQueueService->addProductToQueue($OProduct); |
56 | 56 | } |
57 | 57 | |
58 | - private function checkInventory(OrderProduct &$orderProduct) |
|
58 | + private function checkInventory(OrderProduct & $orderProduct) |
|
59 | 59 | { |
60 | 60 | $order = $orderProduct->getOrder(); |
61 | - $product = $orderProduct->getProduct(); |
|
61 | + $product = $orderProduct->getProduct(); |
|
62 | 62 | |
63 | 63 | if ($order->getOrderType() == 'sale' && !$orderProduct->getOutInventory()) |
64 | 64 | $orderProduct->setOutInventory($product->getDefaultOutInventory()); |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | $this->checkInventory($orderProduct); |
79 | 79 | foreach ($subProducts as $subproduct) { |
80 | 80 | $product = $this->manager->getRepository(Product::class)->find($subproduct['product']); |
81 | - $productGroup = $this->manager->getRepository(ProductGroup::class)->find($subproduct['productGroup']); |
|
81 | + $productGroup = $this->manager->getRepository(ProductGroup::class)->find($subproduct['productGroup']); |
|
82 | 82 | $this->addSubproduct($orderProduct, $product, $productGroup, $subproduct['quantity']); |
83 | 83 | } |
84 | 84 | $this->orderProductQueueService->addProductToQueue($orderProduct); |
@@ -60,17 +60,21 @@ discard block |
||
60 | 60 | $order = $orderProduct->getOrder(); |
61 | 61 | $product = $orderProduct->getProduct(); |
62 | 62 | |
63 | - if ($order->getOrderType() == 'sale' && !$orderProduct->getOutInventory()) |
|
64 | - $orderProduct->setOutInventory($product->getDefaultOutInventory()); |
|
63 | + if ($order->getOrderType() == 'sale' && !$orderProduct->getOutInventory()) { |
|
64 | + $orderProduct->setOutInventory($product->getDefaultOutInventory()); |
|
65 | + } |
|
65 | 66 | |
66 | - if ($order->getOrderType() == 'purchase' && !$orderProduct->getInInventory()) |
|
67 | - $orderProduct->setInInventory($product->getDefaultInInventory()); |
|
67 | + if ($order->getOrderType() == 'purchase' && !$orderProduct->getInInventory()) { |
|
68 | + $orderProduct->setInInventory($product->getDefaultInInventory()); |
|
69 | + } |
|
68 | 70 | } |
69 | 71 | |
70 | 72 | public function postPersist(OrderProduct $orderProduct) |
71 | 73 | { |
72 | 74 | |
73 | - if (!self::$mainProduct) return; |
|
75 | + if (!self::$mainProduct) { |
|
76 | + return; |
|
77 | + } |
|
74 | 78 | self::$mainProduct = false; |
75 | 79 | |
76 | 80 | $json = json_decode($this->request->getContent(), true); |
@@ -88,7 +92,9 @@ discard block |
||
88 | 92 | public function preRemove(OrderProduct $orderProduct) |
89 | 93 | { |
90 | 94 | |
91 | - if (!self::$mainProduct) return; |
|
95 | + if (!self::$mainProduct) { |
|
96 | + return; |
|
97 | + } |
|
92 | 98 | self::$mainProduct = false; |
93 | 99 | $order = $orderProduct->getOrder(); |
94 | 100 | $this->manager->persist($order->setPrice(0)); |
@@ -97,8 +103,9 @@ discard block |
||
97 | 103 | 'parentProduct' => $orderProduct->getProduct(), |
98 | 104 | ]); |
99 | 105 | |
100 | - foreach ($parentProducts as $parentProduct) |
|
101 | - $this->manager->remove($parentProduct); |
|
106 | + foreach ($parentProducts as $parentProduct) { |
|
107 | + $this->manager->remove($parentProduct); |
|
108 | + } |
|
102 | 109 | $this->manager->flush(); |
103 | 110 | |
104 | 111 | self::$calculateBefore[] = $order; |
@@ -8,7 +8,7 @@ |
||
8 | 8 | use ControleOnline\Entity\ProductGroupProduct; |
9 | 9 | use Doctrine\ORM\EntityManagerInterface; |
10 | 10 | use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface |
11 | - AS Security; |
|
11 | + AS Security; |
|
12 | 12 | use Doctrine\ORM\QueryBuilder; |
13 | 13 | use Symfony\Component\HttpFoundation\RequestStack; |
14 | 14 |
@@ -7,7 +7,7 @@ |
||
7 | 7 | use ControleOnline\Entity\Status; |
8 | 8 | use Doctrine\ORM\EntityManagerInterface; |
9 | 9 | use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface |
10 | - AS Security; |
|
10 | + AS Security; |
|
11 | 11 | |
12 | 12 | class OrderInvoiceService |
13 | 13 | { |
@@ -22,7 +22,7 @@ |
||
22 | 22 | private StatusService $statusService, |
23 | 23 | RequestStack $requestStack |
24 | 24 | ) { |
25 | - $this->request = $requestStack->getCurrentRequest(); |
|
25 | + $this->request = $requestStack->getCurrentRequest(); |
|
26 | 26 | } |
27 | 27 | |
28 | 28 | public function calculateOrderPrice(Order $order) |