Browse Source

Modification OrderUtils

feature/export_comptable
Guillaume 4 years ago
parent
commit
e6807a6904
1 changed files with 8 additions and 7 deletions
  1. +8
    -7
      ShopBundle/Services/OrderUtils.php

+ 8
- 7
ShopBundle/Services/OrderUtils.php View File

@@ -162,7 +162,7 @@ class OrderUtils
return $count;
}

public function orderProductsByParentCategory($orderShop = null)
public function getOrderProductsByParentCategory($orderShop = null)
{
$categoriesArray = [];
foreach ($orderShop->getOrderProducts() as $orderProduct) {
@@ -178,16 +178,17 @@ class OrderUtils
return $categoriesArray;
}

public function getDatasSummary($orderShop = null)
public function getOrderDatas($order = null)
{
if(!$orderShop) {
$orderShop = $this->getOrderShopCurrent() ;
if(!$order) {
$order = $this->getOrderShopCurrent() ;
}

$data = [] ;
$data['count'] = $this->countQuantities($orderShop) ;
$data['total_with_tax'] = $this->priceUtils->getTotalWithTaxAndReduction($orderShop) ;
$data['categories'] = $this->orderProductsByParentCategory($orderShop) ;
$data['order'] = $order ;
$data['count'] = $this->countQuantities($order) ;
$data['total_with_tax'] = $this->priceUtils->getTotalWithTaxAndReduction($order) ;
$data['order_products_by_category'] = $this->getOrderProductsByParentCategory($order) ;

return $data ;
}

Loading…
Cancel
Save