Example #1
0
 private function getTotal($idOrder)
 {
     $total = 0;
     $items = $this->ordersRepository->getItemTable()->select(['order_id' => (int) $idOrder]);
     foreach ($items as $item) {
         $total += $item->getTotal();
     }
     return $total;
 }