Passed
Push — master ( d4077c...918738 )
by Luiz Kim
02:22
created
src/Entity/Order.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1093,7 +1093,7 @@
 block discarded – undo
1093 1093
             return false;
1094 1094
 
1095 1095
         return $currentUser->getPeople()->getLink()->exists(
1096
-            function ($key, $element) use ($provider) {
1096
+            function($key, $element) use ($provider) {
1097 1097
                 return $element->getCompany() === $provider;
1098 1098
             }
1099 1099
         );
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1089,8 +1089,9 @@
 block discarded – undo
1089 1089
 
1090 1090
     public function canAccess($currentUser): bool
1091 1091
     {
1092
-        if (($provider = $this->getProvider()) === null)
1093
-            return false;
1092
+        if (($provider = $this->getProvider()) === null) {
1093
+                    return false;
1094
+        }
1094 1095
 
1095 1096
         return $currentUser->getPeople()->getLink()->exists(
1096 1097
             function ($key, $element) use ($provider) {
Please login to merge, or discard this patch.
src/Service/OrderPrintService.php 2 patches
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
 
48 48
         $quantity = $orderProduct->getQuantity();
49 49
         $this->printService->addLine(
50
-            $indent . $quantity . ' X ' . $product->getProduct(),
51
-            " R$ " . number_format($orderProduct->getTotal(), 2, ',', '.'),
50
+            $indent.$quantity.' X '.$product->getProduct(),
51
+            " R$ ".number_format($orderProduct->getTotal(), 2, ',', '.'),
52 52
             '.'
53 53
         );
54 54
     }
@@ -66,10 +66,10 @@  discard block
 block discarded – undo
66 66
         }
67 67
 
68 68
         foreach ($groupedChildren as $groupName => $orderProductChildren) {
69
-            $this->printService->addLine(strtoupper($groupName) . ":");
69
+            $this->printService->addLine(strtoupper($groupName).":");
70 70
             foreach ($orderProductChildren as $orderProductChild) {
71 71
                 $product = $orderProductChild->getProduct();
72
-                $this->printService->addLine("  - " . $product->getProduct());
72
+                $this->printService->addLine("  - ".$product->getProduct());
73 73
             }
74 74
         }
75 75
         $this->printService->addLine('', '', '-');
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         foreach ($queues as $queueName => $orderProducts) {
97 97
             $parentOrderProducts = array_filter($orderProducts, fn($orderProduct) => $orderProduct->getOrderProduct() === null);
98 98
             if (!empty($parentOrderProducts)) {
99
-                $this->printService->addLine(strtoupper($queueName) . ":");
99
+                $this->printService->addLine(strtoupper($queueName).":");
100 100
                 $this->printQueueProducts($orderProducts);
101 101
                 $this->printService->addLine('', '', ' ');
102 102
             }
@@ -106,11 +106,11 @@  discard block
 block discarded – undo
106 106
     public function generatePrintData(Order $order, string $printType, string $deviceType)
107 107
     {
108 108
 
109
-        $this->printService->addLine("PEDIDO #" . $order->getId());
109
+        $this->printService->addLine("PEDIDO #".$order->getId());
110 110
         $this->printService->addLine($order->getOrderDate()->format('d/m/Y H:i'));
111 111
         $client = $order->getClient();
112 112
         $this->printService->addLine(($client !== null ? $client->getName() : 'Não informado'));
113
-        $this->printService->addLine("R$ " . number_format($order->getPrice(), 2, ',', '.'));
113
+        $this->printService->addLine("R$ ".number_format($order->getPrice(), 2, ',', '.'));
114 114
         $this->printService->addLine("", "", "-");
115 115
         $queues = $this->getQueues($order);
116 116
 
Please login to merge, or discard this patch.
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.
src/Service/OrderProductService.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,10 +55,10 @@  discard block
 block discarded – undo
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
 block discarded – undo
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);
Please login to merge, or discard this patch.
Braces   +15 added lines, -8 removed lines patch added patch discarded remove patch
@@ -60,17 +60,21 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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;
Please login to merge, or discard this patch.
src/Repository/OrderRepository.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
       );
57 57
 
58 58
     if ($company)
59
-      $qb->andWhere('pe = :company')->setParameter('company',  $company);
59
+      $qb->andWhere('pe = :company')->setParameter('company', $company);
60 60
 
61 61
     return $qb->getQuery()->getResult();
62 62
   }
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -55,8 +55,9 @@
 block discarded – undo
55 55
         $this->peopleService->getMyCompanies()
56 56
       );
57 57
 
58
-    if ($company)
59
-      $qb->andWhere('pe = :company')->setParameter('company',  $company);
58
+    if ($company) {
59
+          $qb->andWhere('pe = :company')->setParameter('company',  $company);
60
+    }
60 61
 
61 62
     return $qb->getQuery()->getResult();
62 63
   }
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
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
         RequestStack $requestStack
22 22
 
23 23
     ) {
24
-        $this->request  = $requestStack->getCurrentRequest();
24
+        $this->request = $requestStack->getCurrentRequest();
25 25
     }
26 26
 
27 27
     public function getPurchasingSuggestion(People $company)
Please login to merge, or discard this patch.
src/Controller/PurchasingSuggestionController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
      */
24 24
     public function getPurchasingSuggestion(Request $request): JsonResponse
25 25
     {
26
-        $company =  $this->entityManager->getRepository(People::class)->find($request->get('company'));
26
+        $company = $this->entityManager->getRepository(People::class)->find($request->get('company'));
27 27
         $data = $this->orderService->getPurchasingSuggestion($company);
28 28
         return new JsonResponse($data);
29 29
     }
Please login to merge, or discard this patch.