Passed
Push — master ( 7fbd35...c2390d )
by Luiz Kim
02:31
created
src/Service/OrderPrintService.php 2 patches
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -84,8 +84,9 @@
 block discarded – undo
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
         }
Please login to merge, or discard this patch.
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -49,8 +49,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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,16 +108,16 @@  discard block
 block discarded – undo
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
 
119 119
         $this->printQueues($queues);
120 120
         $this->printService->addLine("", "", "-");
121
-        return $this->printService->generatePrintData($device,$order->getProvider());
121
+        return $this->printService->generatePrintData($device, $order->getProvider());
122 122
     }
123 123
 }
Please login to merge, or discard this patch.
src/Service/OrderInvoiceService.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
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
 {
Please login to merge, or discard this patch.
src/Service/OrderService.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Service/OrderProductService.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
         $this->request = $this->requestStack->getCurrentRequest();
33 33
     }
34 34
 
35
-    public function addProduct(Order $order, Product $product, $quantity, $price, ?ProductGroup  $productGroup = null, ?Product $parentProduct = null, ?OrderProduct $orderProductParent =  null): OrderProduct
35
+    public function addProduct(Order $order, Product $product, $quantity, $price, ?ProductGroup  $productGroup = null, ?Product $parentProduct = null, ?OrderProduct $orderProductParent = null): OrderProduct
36 36
     {
37 37
         $OProduct = new OrderProduct();
38 38
         $OProduct->setOrder($order);
@@ -74,10 +74,10 @@  discard block
 block discarded – undo
74 74
         $this->orderProductQueueService->addProductToQueue($OProduct);
75 75
     }
76 76
 
77
-    private function checkInventory(OrderProduct &$orderProduct)
77
+    private function checkInventory(OrderProduct & $orderProduct)
78 78
     {
79 79
         $order = $orderProduct->getOrder();
80
-        $product =  $orderProduct->getProduct();
80
+        $product = $orderProduct->getProduct();
81 81
 
82 82
         if ($order->getOrderType() == 'sale' && !$orderProduct->getOutInventory())
83 83
             $orderProduct->setOutInventory($product->getDefaultOutInventory());
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
         $this->checkInventory($orderProduct);
98 98
         foreach ($subProducts as $subproduct) {
99 99
             $product = $this->manager->getRepository(Product::class)->find($subproduct['product']);
100
-            $productGroup =  $this->manager->getRepository(ProductGroup::class)->find($subproduct['productGroup']);
100
+            $productGroup = $this->manager->getRepository(ProductGroup::class)->find($subproduct['productGroup']);
101 101
             $this->addSubproduct($orderProduct, $product, $productGroup, $subproduct['quantity']);
102 102
         }
103 103
         $this->orderProductQueueService->addProductToQueue($orderProduct);
Please login to merge, or discard this patch.
Braces   +15 added lines, -8 removed lines patch added patch discarded remove patch
@@ -79,17 +79,21 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.