Example #1
0
 public function getPaymentMethods()
 {
     $iddispatchmethod = Session::getActiveDispatchmethodChecked();
     $sql = "SELECT \n\t\t\t\t\tPMT.name, \n\t\t\t\t\tPM.idpaymentmethod, \n\t\t\t\t\tPM.controller\n\t\t\t\tFROM paymentmethod PM\n\t\t\t\tLEFT JOIN paymentmethodtranslation PMT ON PMT.paymentmethodid = PM.idpaymentmethod AND PMT.languageid = :languageid\n\t\t\t\tLEFT JOIN paymentmethodview PV ON PV.paymentmethodid = idpaymentmethod\n\t\t\t\tLEFT JOIN dispatchmethodpaymentmethod DMPM ON PM.idpaymentmethod = DMPM.paymentmethodid\n\t\t\t\tLEFT JOIN dispatchmethod DM ON DM.iddispatchmethod = DMPM.dispatchmethodid\n\t\t\t\tWHERE DM.iddispatchmethod = :iddispatchmethod AND PM.active = 1 AND PV.viewid = :viewid\n\t\t\t\tORDER BY PM.hierarchy ASC";
     $stmt = Db::getInstance()->prepare($sql);
     $stmt->bindValue('viewid', Helper::getViewId());
     $stmt->bindValue('languageid', Helper::getLanguageId());
     $stmt->bindValue('iddispatchmethod', $iddispatchmethod['dispatchmethodid']);
     try {
         $stmt->execute();
         $Data = array();
         while ($rs = $stmt->fetch()) {
             $controller = $rs['controller'];
             $Data[] = array('name' => $rs['name'], 'idpaymentmethod' => $rs['idpaymentmethod']);
         }
     } catch (Exception $e) {
         throw new FrontendException('Error while doing sql query- getPaymentMethods- paymentModel.');
     }
     return $Data;
 }
Example #2
0
 public function getCartVariables()
 {
     $method = Session::getActiveDispatchmethodChecked();
     $payment = Session::getActivePaymentMethodChecked();
     $this->clientModel = App::getModel('client');
     $this->paymentModel = App::getModel('payment');
     $this->deliveryModel = App::getModel('delivery');
     $this->dispatchMethods = $this->deliveryModel->getDispatchmethodPrice();
     // check rules
     $checkRulesCart = App::getModel('cart')->checkRulesCart();
     if (is_array($checkRulesCart) && count($checkRulesCart) > 0) {
         $this->registry->template->assign('checkRulesCart', $checkRulesCart);
     }
     // DON'T CHECK DISPATCH METHOD BY DEFAULT
     //if ($method == NULL || !isset($this->dispatchMethods[$method['dispatchmethodid']])){
     // set dispatch method if not selected or not available
     //$method = current($this->dispatchMethods);
     //App::getModel('delivery')->setDispatchmethodChecked($method['dispatchmethodid']);
     //}
     // unset paymentmethod if not available for selected dispatchmethod
     if (!isset($this->dispatchMethods[$method['dispatchmethodid']])) {
         Session::unsetActivePaymentMethodChecked();
     }
     if ($method != NULL && isset($this->dispatchMethods[$method['dispatchmethodid']])) {
         App::getModel('delivery')->setDispatchmethodChecked($method['dispatchmethodid']);
     }
     // check payment
     $paymentMethods = App::getModel('payment')->getPaymentMethods();
     $paymentAvailable = false;
     foreach ($paymentMethods as $method) {
         if ($method['idpaymentmethod'] == $payment['idpaymentmethod']) {
             $paymentAvailable = true;
         }
     }
     if ($payment == 0 || !$paymentAvailable) {
         if (isset($paymentMethods[0])) {
             App::getModel('payment')->setPaymentMethodChecked($paymentMethods[0]['idpaymentmethod'], $paymentMethods[0]['name']);
         }
     } else {
         App::getModel('payment')->setPaymentMethodChecked($payment['idpaymentmethod'], $payment['paymentmethodname']);
     }
     $minimumordervalue = $this->getMinimumOrderValue();
     $order = App::getModel('finalization')->setClientOrder();
     $assignData = array('deliverymethods' => $this->dispatchMethods, 'checkedDelivery' => Session::getActiveDispatchmethodChecked(), 'checkedPayment' => Session::getActivePaymentMethodChecked(), 'checkedDeliveryOption' => Session::getActiveDispatchmethodOption(), 'payments' => $paymentMethods, 'minimumordervalue' => $minimumordervalue, 'priceWithDispatchMethod' => Session::getActiveglobalPriceWithDispatchmethod(), 'summary' => App::getModel('finalization')->getOrderSummary(), 'order' => Session::getActiveClientOrder());
     foreach ($assignData as $key => $assign) {
         $this->registry->template->assign($key, $assign);
     }
 }
Example #3
0
 public function index()
 {
     // limit available delivery countries
     $dispatchmethod = Session::getActiveDispatchmethodChecked();
     // list of country ids which are specified for selected delivery method
     $countryids = App::getModel('delivery')->getDispatchmethodCountries($dispatchmethod['dispatchmethodid']);
     $clientorder = App::getModel('finalization')->setClientOrder();
     if (empty($clientorder['cart'])) {
         App::redirectUrl($this->registry->router->generate('frontend.cart', true));
     }
     if (Session::getActiveClientid() == NULL) {
         $formLogin = App::getFormModel('clientlogin')->initForm();
         if ($formLogin->Validate()) {
             $formLoginData = $formLogin->getSubmitValues();
             $result = App::getModel('clientlogin')->authProccess($formLoginData['login'], $formLoginData['password']);
             if ($result > 0) {
                 Session::setActiveClientid($result);
                 App::getModel('clientlogin')->checkClientGroup();
                 App::getModel('clientlogin')->setLoginTime();
                 $this->clientModel->saveClientData();
                 $misingCart = App::getModel('missingcart')->checkMissingCartForClient(Session::getActiveClientid());
                 if (is_array($misingCart) && $misingCart != 0) {
                     App::getModel('cart')->addProductsToCartFromMissingCart($misingCart);
                     App::getModel('missingcart')->cleanMissingCart(Session::getActiveClientid());
                 }
                 if (($this->Cart = Session::getActiveCart()) != NULL) {
                     App::redirectUrl($this->registry->router->generate('frontend.checkout', true));
                 } else {
                     App::redirectUrl($this->registry->router->generate('frontend.home', true));
                 }
             } elseif ($result < 0) {
                 Session::setVolatileUserLoginError(2, false);
             } else {
                 Session::setVolatileUserLoginError(1, false);
             }
         }
         $error = Session::getVolatileUserLoginError();
         if ($error[0] == 1) {
             $this->registry->template->assign('loginerror', _('ERR_BAD_LOGIN_OR_PASSWORD'));
         } elseif ($error[0] == 2) {
             $this->registry->template->assign('loginerror', _('TXT_BLOKED_USER'));
         }
         $this->registry->template->assign('formLogin', $formLogin->getForm());
     }
     $form = new SimpleForm\Form(array('name' => 'order', 'action' => '', 'method' => 'post'));
     $billingClientType = $form->AddChild(new SimpleForm\Elements\Radio(array('name' => 'billing_clienttype', 'label' => _('TXT_CLIENT_TYPE'), 'options' => array('1' => _('TXT_INDIVIDUAL_CLIENT'), '2' => _('TXT_COMPANY_CLIENT')))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'billing_firstname', 'label' => _('TXT_FIRSTNAME'), 'rules' => array(new SimpleForm\Rules\Required(_('ERR_EMPTY_FIRSTNAME'))))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'billing_surname', 'label' => _('TXT_SURNAME'), 'rules' => array(new SimpleForm\Rules\Required(_('ERR_EMPTY_SURNAME'))))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'billing_companyname', 'label' => _('TXT_COMPANYNAME'), 'rules' => array(new SimpleForm\Rules\RequiredDependency(_('ERR_EMPTY_COMPANYNAME'), $billingClientType, new SimpleForm\Conditions\Equals('2'))))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'billing_nip', 'label' => _('TXT_NIP'), 'rules' => array(new SimpleForm\Rules\RequiredDependency(_('ERR_EMPTY_NIP'), $billingClientType, new SimpleForm\Conditions\Equals('2'))))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'billing_street', 'label' => _('TXT_STREET'), 'rules' => array(new SimpleForm\Rules\Required(_('ERR_EMPTY_STREET'))))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'billing_streetno', 'label' => _('TXT_STREETNO'), 'rules' => array(new SimpleForm\Rules\Required(_('ERR_EMPTY_STREETNO'))))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'billing_placeno', 'label' => _('TXT_PLACENO'))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'billing_placename', 'label' => _('TXT_PLACE'), 'rules' => array(new SimpleForm\Rules\Required(_('ERR_EMPTY_PLACE'))))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'billing_postcode', 'label' => _('TXT_POSTCODE'), 'rules' => array(new SimpleForm\Rules\Required(_('ERR_EMPTY_POSTCODE'))))));
     $form->AddChild(new SimpleForm\Elements\Select(array('name' => 'billing_country', 'label' => _('TXT_NAME_OF_COUNTRY'), 'options' => App::getModel('lists')->getCountryForSelect($countryids), 'rules' => array(new SimpleForm\Rules\Required(_('ERR_EMPTY_NAME_OF_COUNTRY'))))));
     $otherAddress = $form->AddChild(new SimpleForm\Elements\Checkbox(array('name' => 'other_address', 'label' => _('TXT_OTHER_DELIVERY_ADRESS'), 'default' => 0)));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'shipping_firstname', 'label' => _('TXT_FIRSTNAME'), 'rules' => array(new SimpleForm\Rules\RequiredDependency(_('ERR_EMPTY_FIRSTNAME'), $otherAddress, new SimpleForm\Conditions\Equals('1'))))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'shipping_surname', 'label' => _('TXT_SURNAME'), 'rules' => array(new SimpleForm\Rules\RequiredDependency(_('ERR_EMPTY_SURNAME'), $otherAddress, new SimpleForm\Conditions\Equals('1'))))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'shipping_companyname', 'label' => _('TXT_COMPANYNAME'))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'shipping_street', 'label' => _('TXT_STREET'), 'rules' => array(new SimpleForm\Rules\RequiredDependency(_('ERR_EMPTY_STREET'), $otherAddress, new SimpleForm\Conditions\Equals('0'))))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'shipping_streetno', 'label' => _('TXT_STREETNO'), 'rules' => array(new SimpleForm\Rules\RequiredDependency(_('ERR_EMPTY_STREETNO'), $otherAddress, new SimpleForm\Conditions\Equals('0'))))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'shipping_placeno', 'label' => _('TXT_PLACENO'))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'shipping_placename', 'label' => _('TXT_PLACE'), 'rules' => array(new SimpleForm\Rules\RequiredDependency(_('ERR_EMPTY_PLACE'), $otherAddress, new SimpleForm\Conditions\Equals('0'))))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'shipping_postcode', 'label' => _('TXT_POSTCODE'), 'rules' => array(new SimpleForm\Rules\RequiredDependency(_('ERR_EMPTY_POSTCODE'), $otherAddress, new SimpleForm\Conditions\Equals('0'))))));
     $form->AddChild(new SimpleForm\Elements\Select(array('name' => 'shipping_country', 'label' => _('TXT_NAME_OF_COUNTRY'), 'options' => App::getModel('lists')->getCountryForSelect($countryids), 'rules' => array(new SimpleForm\Rules\RequiredDependency(_('ERR_EMPTY_NAME_OF_COUNTRY'), $otherAddress, new SimpleForm\Conditions\Equals('0'))))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'phone', 'label' => _('TXT_PHONE'), 'rules' => array(new SimpleForm\Rules\Required(_('ERR_EMPTY_PHONE')), new SimpleForm\Rules\Format(_('ERR_WRONG_FORMAT'), '/^[0-9 -+]+$/')))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'phone2', 'label' => _('TXT_ADDITIONAL_PHONE'), 'rules' => array(new SimpleForm\Rules\Format(_('ERR_WRONG_FORMAT'), '/^[0-9 -+]+$/')))));
     $form->AddChild(new SimpleForm\Elements\TextField(array('name' => 'email', 'label' => _('TXT_EMAIL'), 'rules' => array(new SimpleForm\Rules\Required(_('ERR_EMPTY_EMAIL')), new SimpleForm\Rules\Email(_('ERR_WRONG_EMAIL'))))));
     if ((int) Session::getActiveClientid() == 0) {
         $createAccount = $form->AddChild(new SimpleForm\Elements\Checkbox(array('name' => 'create_account', 'label' => _('TXT_CHECKOUT_CREATE_ACCOUNT'), 'default' => 1)));
         $newPassword = $form->AddChild(new SimpleForm\Elements\Password(array('name' => 'password', 'label' => _('TXT_PASSWORD'), 'rules' => array(new SimpleForm\Rules\RequiredDependency(_('ERR_EMPTY_PASSWORD'), $createAccount, new SimpleForm\Conditions\Equals('1'))))));
         $form->AddChild(new SimpleForm\Elements\Password(array('name' => 'confirmpassword', 'label' => _('TXT_PASSWORD_REPEAT'), 'rules' => array(new SimpleForm\Rules\RequiredDependency(_('ERR_EMPTY_CONFIRM_PASSWORD'), $createAccount, new SimpleForm\Conditions\Equals('1')), new SimpleForm\Rules\Compare(_('ERR_PASSWORDS_NOT_COMPATIBILE'), $newPassword)))));
         $form->AddChild(new SimpleForm\Elements\Checkbox(array('name' => 'confirmterms', 'label' => sprintf(_('TXT_ACCEPT_TERMS_AND_POLICY_OF_PRIVATE'), App::getModel('staticcontent')->getConditionsLink(), Session::getActiveShopName()), 'rules' => array(new SimpleForm\Rules\Required(_('ERR_TERMS_NOT_AGREED'))), 'default' => 0)));
         $form->AddChild(new SimpleForm\Elements\Checkbox(array('name' => 'newsletter', 'label' => _('TXT_NEWSLETTER_SIGNUP'), 'default' => 0)));
     }
     $clientData = $this->clientModel->getClient();
     $clientBillingAddress = $this->clientModel->getClientAddress(1);
     $clientShippingAddress = $this->clientModel->getClientAddress(0);
     $form->Populate(array('billing_clienttype' => $clientBillingAddress['clienttype'], 'other_address' => 0, 'create_account' => 1, 'phone' => isset($clientData['phone']) ? $clientData['phone'] : '', 'phone2' => isset($clientData['phone2']) ? $clientData['phone2'] : '', 'email' => isset($clientData['email']) ? $clientData['email'] : '', 'billing_firstname' => $clientBillingAddress['firstname'], 'billing_surname' => $clientBillingAddress['surname'], 'billing_companyname' => $clientBillingAddress['companyname'], 'billing_nip' => $clientBillingAddress['nip'], 'billing_street' => $clientBillingAddress['street'], 'billing_streetno' => $clientBillingAddress['streetno'], 'billing_placeno' => $clientBillingAddress['placeno'], 'billing_placename' => $clientBillingAddress['placename'], 'billing_postcode' => $clientBillingAddress['postcode'], 'billing_country' => $clientBillingAddress['countryid'], 'shipping_firstname' => $clientShippingAddress['firstname'], 'shipping_surname' => $clientShippingAddress['surname'], 'shipping_companyname' => $clientShippingAddress['companyname'], 'shipping_nip' => $clientShippingAddress['nip'], 'shipping_street' => $clientShippingAddress['street'], 'shipping_streetno' => $clientShippingAddress['streetno'], 'shipping_placeno' => $clientShippingAddress['placeno'], 'shipping_placename' => $clientShippingAddress['placename'], 'shipping_postcode' => $clientShippingAddress['postcode'], 'shipping_country' => $clientShippingAddress['countryid']));
     if ($form->Validate()) {
         $formData = $form->getSubmitValues();
         $Data['clientaddress'] = array('firstname' => $formData['billing_firstname'], 'surname' => $formData['billing_surname'], 'companyname' => $formData['billing_clienttype'] == 2 ? $formData['billing_companyname'] : '', 'nip' => $formData['billing_clienttype'] == 2 ? $formData['billing_nip'] : '', 'street' => $formData['billing_street'], 'streetno' => $formData['billing_streetno'], 'placeno' => $formData['billing_placeno'], 'placename' => $formData['billing_placename'], 'postcode' => $formData['billing_postcode'], 'countryid' => $formData['billing_country'], 'clienttype' => $formData['billing_clienttype']);
         if (!empty($formData['other_address'])) {
             $Data['deliveryAddress'] = array('firstname' => $formData['shipping_firstname'], 'surname' => $formData['shipping_surname'], 'companyname' => $formData['shipping_companyname'], 'street' => $formData['shipping_street'], 'streetno' => $formData['shipping_streetno'], 'placeno' => $formData['shipping_placeno'], 'placename' => $formData['shipping_placename'], 'postcode' => $formData['shipping_postcode'], 'countryid' => $formData['shipping_country']);
         } else {
             $Data['deliveryAddress'] = $Data['clientaddress'];
         }
         $recurMail = 0;
         if (!empty($formData['create_account'])) {
             $recurMail = $this->clientModel->checkClientNewMail($formData);
             if ($recurMail == 0) {
                 $clientData = $Data['clientaddress'];
                 $clientData['email'] = $formData['email'];
                 $clientData['password'] = $formData['password'];
                 $clientData['newsletter'] = $formData['newsletter'];
                 $clientData['phone'] = $formData['phone'];
                 $clientData['phone2'] = $formData['phone2'];
                 $clientId = $this->clientModel->addNewClient($clientData);
                 $result = App::getModel('clientlogin')->authProccess($formData['email'], $formData['password']);
                 if ($result > 0) {
                     Session::setActiveClientid($result);
                     App::getModel('clientlogin')->checkClientGroup();
                     $this->clientModel->saveClientData();
                     $this->clientModel->updateClientAddress($Data['clientaddress'], 1);
                     $this->clientModel->updateClientAddress($Data['deliveryAddress'], 0);
                 }
             } else {
                 $result = App::getModel('clientlogin')->authProccess($formData['email'], $formData['password']);
                 if ($result > 0) {
                     Session::setActiveClientid($result);
                     App::getModel('clientlogin')->checkClientGroup();
                     App::getModel('clientlogin')->setLoginTime();
                     App::getModel('client')->saveClientData();
                     $misingCart = App::getModel('missingcart')->checkMissingCartForClient($result);
                     if (is_array($misingCart) && !empty($misingCart)) {
                         App::getModel('cart')->addProductsToCartFromMissingCart($misingCart);
                         App::getModel('missingcart')->cleanMissingCart(Session::getActiveClientid());
                     }
                     $recurMail = 0;
                 } else {
                     $recurMail = -1;
                 }
             }
         } else {
             if (!empty($formData['newsletter'])) {
                 $newId = App::getModel('newsletter')->addClientAboutNewsletter($formData['email']);
                 if ($newId > 0) {
                     App::getModel('newsletter')->changeNewsletterStatus($newId);
                 }
             }
         }
         if ((int) Session::getActiveClientid() > 0) {
             $this->clientModel->updateClientAddress($Data['clientaddress'], 1);
             $this->clientModel->updateClientAddress($Data['deliveryAddress'], 0);
         }
         if ($recurMail == -1) {
             $this->registry->template->assign('error', 'Podany adres e-mail jest już przypisany do innego konta użytkownika. Proszę skorzystaj z opcji <a href="' . $this->registry->router->generate('frontend.forgotpassword', true) . '" style="font-size: inherit">przypomnienia hasła</a> jeśli chcesz odzyskać dostęp do konta.');
         } else {
             if ($recurMail == 1) {
                 $this->registry->template->assign('error', _('ERR_DUPLICATE_EMAIL'));
             } else {
                 if (!$recurMail) {
                     Session::setActiveOrderClientAddress($Data['clientaddress']);
                     Session::setActiveOrderDeliveryAddress($Data['deliveryAddress']);
                     Session::setActiveOrderContactData(array('phone' => $formData['phone'], 'phone2' => $formData['phone2'], 'email' => $formData['email']));
                     App::getModel('finalization')->setClientOrder();
                     App::redirectUrl($this->registry->router->generate('frontend.finalization', true));
                 }
             }
         }
     }
     $assignData = array('form' => $form->getForm());
     foreach ($assignData as $key => $assign) {
         $this->registry->template->assign($key, $assign);
     }
     if (Session::getActiveClientid() > 0) {
         return $this->registry->template->fetch($this->loadTemplate('client.tpl'));
     } else {
         return $this->registry->template->fetch($this->loadTemplate('guest.tpl'));
     }
 }
Example #4
0
 public function setClientOrder($Data = array())
 {
     $customerOpinion = isset($Data['customeropinion']) ? App::getModel('formprotection')->cropDangerousCode($Data['customeropinion']) : '';
     Event::notify($this, 'frontend.finalization.setActiveClientOrder', array('dispatchmethod' => Session::getActiveDispatchmethodChecked(), 'cart' => Session::getActiveCart()));
     $clientOrder = array('cart' => Session::getActiveCart(), 'globalPrice' => App::getModel('cart')->getGlobalPrice(), 'globalPriceWithoutVat' => App::getModel('cart')->getGlobalPriceWithoutVat(), 'priceWithDispatchMethod' => Session::getActiveglobalPriceWithDispatchmethod(), 'priceWithDispatchMethodNetto' => Session::getActiveglobalPriceWithDispatchmethodNetto(), 'count' => App::getModel('cart/cart')->getProductAllCount(), 'clientdata' => App::getModel('client')->getClient(), 'clientaddress' => Session::getActiveOrderClientAddress(), 'deliveryAddress' => Session::getActiveOrderDeliveryAddress(), 'contactData' => Session::getActiveOrderContactData(), 'dispatchmethod' => Session::getActiveDispatchmethodChecked(), 'payment' => Session::getActivePaymentMethodChecked(), 'clientid' => Session::getActiveClientid(), 'customeropinion' => $customerOpinion);
     $rulesDiscount = $this->getRulesCart($clientOrder);
     if (is_array($rulesDiscount) && count($rulesDiscount) > 0 && $clientOrder['dispatchmethod'] > 0 && $clientOrder['payment'] > 0) {
         if ($rulesDiscount['freeshipping'] == 1) {
             $clientOrder['priceWithDispatchMethod'] = $clientOrder['priceWithDispatchMethod'] - $clientOrder['dispatchmethod']['dispatchmethodcost'];
             $clientOrder['priceWithDispatchMethodNetto'] = $clientOrder['priceWithDispatchMethodNetto'] - $clientOrder['dispatchmethod']['dispatchmethodcostnetto'];
             $clientOrder['dispatchmethod']['dispatchmethodcost'] = 0;
             $clientOrder['dispatchmethod']['dispatchmethodcostnetto'] = 0;
         }
         if ($rulesDiscount['symbol'] == '+') {
             $globalPricePromo = sprintf('%01.2f', $clientOrder['globalPrice'] + $rulesDiscount['discount']);
             $globalPriceWithoutVatPromo = sprintf('%01.2f', $clientOrder['globalPriceWithoutVat'] + $rulesDiscount['discount']);
             $priceWithDispatchMethodPromo = sprintf('%01.2f', $clientOrder['priceWithDispatchMethod'] + $rulesDiscount['discount']);
             $priceWithDispatchMethodNettoPromo = sprintf('%01.2f', $clientOrder['priceWithDispatchMethodNetto'] + $rulesDiscount['discount']);
             $message = $rulesDiscount['symbol'] . $this->registry->core->processPrice($rulesDiscount['discount']);
         } elseif ($rulesDiscount['symbol'] == '-') {
             $globalPricePromo = sprintf('%01.2f', $clientOrder['globalPrice'] - $rulesDiscount['discount']);
             $globalPriceWithoutVatPromo = sprintf('%01.2f', $clientOrder['globalPriceWithoutVat'] - $rulesDiscount['discount']);
             $priceWithDispatchMethodPromo = sprintf('%01.2f', $clientOrder['priceWithDispatchMethod'] - $rulesDiscount['discount']);
             $priceWithDispatchMethodNettoPromo = sprintf('%01.2f', $clientOrder['priceWithDispatchMethodNetto'] - $rulesDiscount['discount']);
             $message = $rulesDiscount['symbol'] . $this->registry->core->processPrice($rulesDiscount['discount']);
         } elseif ($rulesDiscount['symbol'] == '%') {
             $globalPricePromo = sprintf('%01.2f', abs($clientOrder['globalPrice'] * $rulesDiscount['discount'] / 100));
             $globalPriceWithoutVatPromo = sprintf('%01.2f', abs($clientOrder['globalPriceWithoutVat'] * $rulesDiscount['discount'] / 100));
             $priceWithDispatchMethodPromo = sprintf('%01.2f', abs($clientOrder['priceWithDispatchMethod'] * $rulesDiscount['discount'] / 100));
             $priceWithDispatchMethodNettoPromo = sprintf('%01.2f', abs($clientOrder['priceWithDispatchMethodNetto'] * $rulesDiscount['discount'] / 100));
             $message = ($rulesDiscount['discount'] - 100 > 0 ? '+' : '-') . abs($rulesDiscount['discount'] - 100) . $rulesDiscount['symbol'];
         }
         if ($globalPricePromo > 0 && $globalPriceWithoutVatPromo > 0 && $priceWithDispatchMethodPromo > 0 && $priceWithDispatchMethodNettoPromo > 0) {
             $clientOrder['globalPricePromo'] = $globalPricePromo;
             $clientOrder['globalPriceWithoutVatPromo'] = $globalPriceWithoutVatPromo;
             $clientOrder['priceWithDispatchMethodPromo'] = $priceWithDispatchMethodPromo;
             $clientOrder['priceWithDispatchMethodNettoPromo'] = $priceWithDispatchMethodNettoPromo;
             $clientOrder['rulescart'] = $rulesDiscount['name'];
             $clientOrder['rulescartdescription'] = $rulesDiscount['description'];
             $clientOrder['rulescartid'] = $rulesDiscount['rulescartid'];
             $clientOrder['rulescartmessage'] = $message;
             $clientOrder['rulescartfreeshipping'] = $rulesDiscount['freeshipping'];
         }
     }
     Session::setActiveClientOrder($clientOrder);
     return $this->getClientOrder();
 }