Ejemplo n.º 1
0
 public function getpriceAction()
 {
     $currency = Shineisp_Registry::get('Zend_Currency');
     $translator = Shineisp_Registry::get('Zend_Translate');
     $id = $this->getRequest()->getParam('id');
     $refund = $this->getRequest()->getParam('refund');
     $data = array();
     if (is_numeric($id)) {
         $tranche = ProductsTranches::getTranchebyId($id);
         // JAY 20130409 - Add refund if exist
         $NS = new Zend_Session_Namespace('Default');
         if (is_array($NS->upgrade)) {
             //Check if the product is OK for upgrade and if OK take refund
             foreach ($NS->upgrade as $orderid => $upgradeProduct) {
                 if ($orderid != 0) {
                     if (in_array($id, $upgradeProduct)) {
                         $refundInfo = OrdersItems::getRefundInfo($orderid);
                         $refund = $refundInfo['refund'];
                         $idBillingCircle = $tranche['BillingCycle']['billing_cycle_id'];
                         $monthBilling = BillingCycle::getMonthsNumber($idBillingCircle);
                         if ($monthBilling > 0) {
                             $priceToPay = $tranche['price'] * $monthBilling;
                             $priceToPayWithRefund = $priceToPay - $refund;
                             if ($priceToPayWithRefund < 0) {
                                 $priceToPayWithRefund = $priceToPay;
                             }
                             $tranche['price'] = round($priceToPayWithRefund / $monthBilling, 2);
                         } else {
                             $priceToPayWithRefund = $tranche['price'] - $refund;
                             if ($priceToPayWithRefund > 0) {
                                 $tranche['price'] = $priceToPayWithRefund;
                             }
                         }
                         break;
                     }
                 }
             }
         }
         $includes = ProductsTranchesIncludes::getIncludeForTrancheId($id);
         $textIncludes = array();
         if (array_key_exists('domains', $includes)) {
             $textIncludes[] = $this->translator->translate('Domains Included') . ": " . implode(", ", $includes['domains']);
         }
         $textInclude = "";
         if (!empty($textIncludes)) {
             $textInclude = implode("<br/>", $textIncludes);
         }
         // Prepare the data to send to the json
         $data['price'] = $tranche['price'];
         if (!empty($tranche['Products']['Taxes']['percentage']) && is_numeric($tranche['Products']['Taxes']['percentage'])) {
             $data['pricetax'] = $tranche['price'] * ($tranche['Products']['Taxes']['percentage'] + 100) / 100;
         } else {
             $data['pricetax'] = $tranche['price'];
         }
         $data['pricelbl'] = $currency->toCurrency($tranche['price'], array('currency' => Settings::findbyParam('currency')));
         $data['months'] = $tranche['BillingCycle']['months'];
         $data['pricepermonths'] = $data['pricetax'] * $tranche['BillingCycle']['months'];
         $data['name'] = $this->translator->translate($tranche['BillingCycle']['name']);
         $data['pricetax'] = $currency->toCurrency($data['pricetax'], array('currency' => Settings::findbyParam('currency')));
         $data['pricepermonths'] = $currency->toCurrency($data['pricepermonths'], array('currency' => Settings::findbyParam('currency')));
         $data['setupfee'] = $currency->toCurrency($tranche['setupfee'], array('currency' => Settings::findbyParam('currency')));
         $data['includes'] = $textInclude;
     }
     die(json_encode($data));
 }
Ejemplo n.º 2
0
 /**
  * Get a record and populate the application form 
  * @return unknown_type
  */
 public function editAction()
 {
     $form = $this->getForm('/admin/products/process');
     $id = $this->getRequest()->getParam('id');
     $orders = "";
     // Create the buttons in the edit form
     $this->view->buttons = array(array("url" => "#", "label" => $this->translator->translate('Save'), "params" => array('css' => null, 'id' => 'submit')), array("url" => "/admin/products/list", "label" => $this->translator->translate('List'), "params" => array('css' => null, 'id' => 'submit')), array("url" => "/admin/products/new/", "label" => $this->translator->translate('New'), "params" => array('css' => null)));
     if (!empty($id) && is_numeric($id)) {
         $this->session->productid = $id;
         $rs = $this->products->getAllInfo($id, $this->session->langid);
         if (!empty($rs)) {
             // Join the translated data information to populate the form
             $data = !empty($rs['ProductsData'][0]) ? $rs['ProductsData'][0] : array();
             $rs = array_merge($rs, $data);
             $form = $this->createAttributesElements($form, $rs['group_id']);
             $this->view->isrecurring = $rs['ProductsAttributesGroups']['isrecurring'];
             $rs['language_id'] = $this->session->langid;
             // added to the form the language id selected
             $rs['related'] = ProductsRelated::getItemsbyProductID($rs['product_id']);
             //add panel for select upgrade
             $rs['upgrade'] = ProductsUpgrades::getItemsbyProductID($rs['product_id']);
             // Get the wiki pages attached to the product selected
             $rs['wikipages'] = Wikilinks::getWikiPagesList($rs['product_id'], "products", $this->session->langid);
             $form->populate($rs);
             $categories = explode("/", $rs['categories']);
             $this->view->categories = json_encode($this->createCategoryTree(0, $categories));
             $this->view->title = !empty($rs['name']) ? $rs['name'] : "";
             $this->view->icon = "fa fa-barcode";
             $this->view->titlelink = !empty($rs['uri']) ? "/" . $rs['uri'] . ".html" : "";
             $media = ProductsMedia::getMediabyProductId($id, "pm.media_id, pm.filename, pm.path");
             if (isset($media[0])) {
                 $this->view->media = array('records' => $media, 'delete' => array('controller' => 'products', 'action' => 'delmedia'));
             }
             $tranches = ProductsTranches::getTranches($id, "tranche_id, quantity, measurement, setupfee, price, bc.name as billingcycle, selected");
             if (isset($tranches[0])) {
                 $onclick = array();
                 foreach ($tranches as &$tranche) {
                     $trancheid = $tranche['tranche_id'];
                     $include = ProductsTranchesIncludes::getIncludeForTrancheId($trancheid);
                     $textInclude = array();
                     if (array_key_exists('domains', $include)) {
                         $textInclude[] = "Domains: " . implode(", ", $include['domains']);
                     }
                     $tranche['include'] = implode("<br/>", $textInclude);
                 }
                 $this->view->tranches = array('records' => $tranches, 'actions' => array('/admin/products/setdefaultrance/id/' => 'Set as default'), 'delete' => array('controller' => 'products', 'action' => 'deltranche'));
             }
         }
         $orders = array('records' => OrdersItems::ProductsInOrdersItems($id), 'edit' => array('controller' => 'ordersitems', 'action' => 'edit'));
         $this->view->buttons[] = array("url" => "/admin/products/confirm/id/{$id}", "label" => $this->translator->translate('Delete'), "params" => array('css' => null));
     }
     $this->view->description = $this->translator->translate("Here you can edit the product details");
     $this->view->mex = $this->getRequest()->getParam('mex');
     $this->view->mexstatus = $this->getRequest()->getParam('status');
     $this->view->orders = $orders;
     $this->view->isSold = (bool) OrdersItems::CheckIfProductExist($id);
     $this->view->form = $form;
     $this->render('applicantform');
 }