Commit 2e0a9c166f426a52286ba9482263c078f13695e8

Authored by Administrator
1 parent 6be76965

add local config

Showing 1 changed file with 4 additions and 1 deletions   Show diff stats
src/app/frontend/controllers/DealerController.php
... ... @@ -1652,7 +1652,10 @@ class DealerController extends \controllers\ControllerBase
1652 1652  
1653 1653 private function getOrder( $order_id, $type ) {
1654 1654 if($type == 'online_order_history'){
1655   - die('here');
  1655 + print_r($order_id);
  1656 + print("</br>");
  1657 + print_r($this->lang_id );
  1658 + die();
1656 1659 $items = $this->models->getOrders1C()->getOrdersByOrderId( $order_id, $this->lang_id );
1657 1660 } else if($type == 'shipment_history'){
1658 1661 $items = $this->models->getShipments()->getOrdersByOrderId( $order_id, $this->lang_id );
... ...