Commit 1ff3f032d8734be32250f0274387198137fe6518

Authored by Administrator
1 parent 169af5d5

add local config

Showing 1 changed file with 2 additions and 3 deletions   Show diff stats
src/app/frontend/controllers/DealerController.php
... ... @@ -681,7 +681,6 @@ class DealerController extends \controllers\ControllerBase
681 681 }
682 682  
683 683 public function onlineOrderHistoryAction() {
684   - die('here');
685 684 if($this->session->has('id')) {
686 685 $customer = $this->models->getCustomers()->getOneData($this->session->get('id'))['0'];
687 686 $this->view->setVar('customer', $customer);
... ... @@ -708,12 +707,12 @@ class DealerController extends \controllers\ControllerBase
708 707 }
709 708  
710 709 public function singleOrderAction($order_id,$type) {
711   - $this->getOrder($order_id,$type);
  710 + // $this->getOrder($order_id,$type);
712 711 }
713 712  
714 713 public function printOrderAction($order_id,$type) {
715 714 $this->view->setRenderLevel(View::LEVEL_ACTION_VIEW);
716   - $this->getOrder($order_id,$type);
  715 + // $this->getOrder($order_id,$type);
717 716 }
718 717  
719 718 public function wholesalePricesAction() {
... ...