/**
  * Sort product option choices
  *
  * @return JSONResponse
  */
 public function sortChoice()
 {
     $target = $this->request->get('target');
     foreach ($this->request->get($target, array()) as $position => $key) {
         if (!empty($key)) {
             $productOption = ProductOptionChoice::getInstanceByID((int) $key);
             $productOption->setFieldValue('position', (int) $position);
             $productOption->save();
         }
     }
     return new JSONResponse(false, 'success');
 }
Esempio n. 2
0
 public function set()
 {
     $request = $this->application->getRequest();
     $orderedItemID = $request->get('orderedItemID');
     $choiceID = $request->get('choiceID');
     $optionText = $request->get('optionText');
     if (!isset($orderedItemID)) {
         throw new Exception("Ordered item is required");
     }
     if (!isset($choiceID)) {
         throw new Exception("Choice item is required");
     }
     //throw new Exception(" response : " . $orderedItemID);
     //$orderItem = ActiveRecordModel::getInstanceByID('OrderedItem', $orderedItemID, ActiveRecordModel::LOAD_DATA, array('Product'));
     $orderItem = OrderedItem::getInstanceByID('OrderedItem', $orderedItemID, true, true);
     $orderItem->load(true);
     $orderItem->loadOptions();
     $product_option_choice = ProductOptionChoice::getInstanceByID($choiceID, true, true);
     $product_option_choice->load(true);
     if (!isset($product_option_choice)) {
         throw new Exception('Option not loaded');
     }
     $choice = $orderItem->addOptionChoice($product_option_choice);
     $orderItem->save();
     $response = new LiveCartSimpleXMLElement('<response datetime="' . date('c') . '"></response>');
     $response->addChild("message", "Success");
     if (isset($choice)) {
         $choice->load(true);
         if (isset($optionText)) {
             $choice->optionText->set($optionText);
             $choice->save();
         }
     }
     return new SimpleXMLResponse($response);
     //good
     /*$ordered_item = OrderedItemOption::getNewInstance($orderItem,$product_option_choice);
       $ordered_item->load(true);
       //$ordered_item->updatePriceDiff();
       $ordered_item->save();
       throw new Exception('is set --- ');*/
     /*$productOption = ProductOption::getInstanceByID($product_option_choice->optionID->get(), true);
             $productOption->load(true);
     
             $choice = $orderItem->getOptionChoice($productOption);
     
             if(isset($choice)) {
                 $choice->load(true);
                 $orderItem->removeOptionChoice($choice->choice->get());
                 $orderItem->save();
                 //$orderItem->removeOption($productOption);
                 //$orderItem->addOptionChoice($choice);
                 //$orderItem->save();
                 throw new Exception('is set');
                 //throw new Exception('is set ' . $choice->choice->get()->option->get()->getID());
             } else {
                 //$orderItem->addOption($productOption->option->get());
                 //$orderItem->addOptionChoice($productOption->getChoiceByID($product_option_choice->ID->get()));
                 //$orderItem->save();
     
                 $orderItem->addOptionChoice($product_option_choice);
                 $orderItem->save();
                 throw new Exception('is not set ');
             }*/
 }