339 lines
19 KiB
PHP
339 lines
19 KiB
PHP
<?php
|
|
/**
|
|
* 2010-2016 La Poste SA
|
|
*
|
|
* NOTICE OF LICENSE
|
|
*
|
|
* This source file is subject to the Academic Free License (AFL 3.0)
|
|
* that is bundled with this package in the file LICENSE.txt.
|
|
* It is also available through the world-wide-web at this URL:
|
|
* http://opensource.org/licenses/afl-3.0.php
|
|
* If you did not receive a copy of the license and are unable to
|
|
* obtain it through the world-wide-web, please send an email
|
|
* to modules-prestashop@laposte.fr so we can send you a copy immediately.
|
|
*
|
|
* DISCLAIMER
|
|
*
|
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
|
* versions in the future. If you wish to customize PrestaShop for your
|
|
* needs please refer to http://www.prestashop.com for more information.
|
|
*
|
|
* @author Quadra Informatique <modules@quadra-informatique.fr>
|
|
* @copyright 2010-2016 La Poste SA
|
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
|
* International Registered Trademark & Property of La Poste SA
|
|
*/
|
|
|
|
include('../../config/config.inc.php');
|
|
include('../../init.php');
|
|
require_once(_PS_MODULE_DIR_.'socolissimo/classes/SCFields.php');
|
|
|
|
/* Init the Context (inherit Socolissimo and handle error) */
|
|
if (!Tools::getValue('DELIVERYMODE')) {
|
|
$so = new SCFields(Tools::getValue('deliveryMode')); /* api 4.0 mobile */
|
|
} else {
|
|
$so = new SCFields(Tools::getValue('DELIVERYMODE')); /* api 4.0 */
|
|
}
|
|
|
|
|
|
/* Init the Display */
|
|
$display = new FrontController();
|
|
$display->setTemplate(dirname(__FILE__).'/views/templates/front/error.tpl');
|
|
|
|
$errors_list = array();
|
|
$redirect = __PS_BASE_URI__.'index.php?controller=order&';
|
|
$so->context->smarty->assign('so_url_back', $redirect);
|
|
|
|
$return = array();
|
|
|
|
/* If error code not defined or empty / null */
|
|
$errors_codes = ($tab = Tools::getValue('ERRORCODE')) ? explode(' ', trim($tab)) : array();
|
|
|
|
/* If no required error code, start to get the POST data */
|
|
if (!$so->checkErrors($errors_codes, SCError::REQUIRED)) {
|
|
foreach ($_POST as $key => $val) {
|
|
if ($so->isAvailableFields($key)) {
|
|
if (!Tools::getValue('CHARSET')) {
|
|
/* only way to know if api is 3.0 to get encode for accentued chars in key calculation */
|
|
$return[Tools::strtoupper($key)] = utf8_encode(Tools::stripslashes($val));
|
|
} else {
|
|
$return[Tools::strtoupper($key)] = Tools::stripslashes($val);
|
|
}
|
|
}
|
|
}
|
|
/* GET parameter, the only one */
|
|
$return['TRRETURNURLKO'] = Tools::getValue('trReturnUrlKo'); /* api 4.0 mobile */
|
|
if (!$return['TRRETURNURLKO']) {
|
|
$return['TRRETURNURLKO'] = Tools::getValue('TRRETURNURLKO'); /* api 4.0 */
|
|
} else {
|
|
/* Treating parameters for api 4.0 mobile */
|
|
if (empty($return['TRINTER'])) {
|
|
$return['TRINTER'] = 0; /* 0 by default */
|
|
}
|
|
if (empty($return['CELANG'])) {
|
|
$return['CELANG'] = 'fr_FR'; /* fr_FR by default */
|
|
}
|
|
if (!empty($return['PRPAYS'])) {
|
|
unset($return['PRPAYS']);
|
|
}
|
|
if (!empty($return['CODERESEAU'])) {
|
|
unset($return['CODERESEAU']);
|
|
}
|
|
}
|
|
foreach ($so->getFields(SCFields::REQUIRED) as $field) {
|
|
if (!isset($return[$field])) {
|
|
$errors_list[] = $so->l('This key is required for Socolissimo:').$field;
|
|
}
|
|
}
|
|
} else {
|
|
foreach ($errors_codes as $code) {
|
|
$errors_list[] = $so->l('Error code:').' '.$so->getError($code);
|
|
}
|
|
}
|
|
// check if retrun country is allowed by shop
|
|
if (array_key_exists('PRPAYS',$return)) {
|
|
$iso_return = $return['PRPAYS'];
|
|
} else {
|
|
$iso_return = $return['CEPAYS'];
|
|
}
|
|
|
|
if (!isAvailableReturnCountry($iso_return)) {
|
|
$errors_list[] = $so->l('Country in address is not allowed in shop.');
|
|
}
|
|
|
|
if (empty($errors_list)) {
|
|
if ($so->isCorrectSignKey($return['SIGNATURE'], $return) && $so->context->cart->id && saveOrderShippingDetails($so->context->cart->id, (int)$return['TRCLIENTNUMBER'], $return, $so)) {
|
|
$trparamplus = explode('|', $return['TRPARAMPLUS']);
|
|
|
|
if (count($trparamplus) > 1) {
|
|
$so->context->cart->id_carrier = (int)$trparamplus[0];
|
|
if ($trparamplus[1] == 'checked' || $trparamplus[1] == 1 || $trparamplus[1] == 'true') {
|
|
/* value can be "undefined" or "not checked" */
|
|
$so->context->cart->gift = 1;
|
|
} else {
|
|
$so->context->cart->gift = 0;
|
|
}
|
|
} elseif (count($trparamplus) == 1) {
|
|
$so->context->cart->id_carrier = (int)$trparamplus[0];
|
|
}
|
|
|
|
if ((int)$so->context->cart->gift && Validate::isMessage($trparamplus[2])) {
|
|
$so->context->cart->gift_message = strip_tags($trparamplus[2]);
|
|
}
|
|
|
|
if (!$so->context->cart->update()) {
|
|
$errors_list[] = $so->l('Cart cannot be updated. Please try again your selection');
|
|
} else {
|
|
Tools::redirect($redirect.'step=3&cgv=1&id_carrier='.$so->context->cart->id_carrier);
|
|
}
|
|
} else {
|
|
$errors_list[] = $so->getError('999');
|
|
}
|
|
}
|
|
|
|
$so->context->smarty->assign('error_list', $errors_list);
|
|
$display->run();
|
|
|
|
function isAvailableReturnCountry($iso_code)
|
|
{
|
|
if ($iso_code) {
|
|
$carrier = new Carrier(Configuration::get('SOCOLISSIMO_CARRIER_ID'));
|
|
$zones = $carrier->getZones();
|
|
$country = Country::getByIso($iso_code);
|
|
if ((int)$country && (int)$carrier->id) {
|
|
$is_available = false;
|
|
$return_country = new Country((int)$country);
|
|
$zone_country = Country::getIdZone((int)$country);
|
|
if ($zone_country && $return_country->active) {
|
|
foreach ($zones as $zone) {
|
|
if ($zone['id_zone'] == $zone_country) {
|
|
$is_available = true;
|
|
}
|
|
}
|
|
return $is_available;
|
|
}
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
function saveOrderShippingDetails($id_cart, $id_customer, $so_params, $so_object)
|
|
{
|
|
// we want at least one phone number
|
|
$cart = new Cart($id_cart);
|
|
$delivery_address = new Address($cart->id_address_delivery);
|
|
$billing_address = new Address($cart->id_address_invoice);
|
|
$phone_number = $so_params['CEPHONENUMBER'];
|
|
if (!$so_params['CEPHONENUMBER']) {
|
|
if ($delivery_address->phone_mobile) {
|
|
$phone_number = $delivery_address->phone_mobile;
|
|
} elseif ($delivery_address->phone) {
|
|
$phone_number = $delivery_address->phone;
|
|
} elseif ($billing_address->phone_mobile) {
|
|
$phone_number = $billing_address->phone_mobile;
|
|
} elseif ($billing_address->phone) {
|
|
$phone_number = $billing_address->phone;
|
|
} else {
|
|
$phone_number = '';
|
|
}
|
|
}
|
|
// if api use is 3.0 we need to decode for accentued chars
|
|
if (!isset($so_params['CHARSET'])) {
|
|
foreach ($so_params as $key => $value) {
|
|
$so_params[$key] = utf8_decode($value);
|
|
}
|
|
}
|
|
|
|
$delivery_mode = array(
|
|
'DOM' => 'Livraison à domicile',
|
|
'BPR' => 'Livraison en Bureau de Poste',
|
|
'A2P' => 'Livraison Commerce de proximité',
|
|
'MRL' => 'Livraison Commerce de proximité',
|
|
'CMT' => 'Livraison commerçants Belgique',
|
|
'CIT' => 'Livraison en Cityssimo',
|
|
'ACP' => 'Agence ColiPoste',
|
|
'CDI' => 'Centre de distribution',
|
|
'BDP' => 'Bureau de poste Belge',
|
|
'RDV' => 'Livraison sur Rendez-vous');
|
|
|
|
// default country france
|
|
if (isset($so_params['PRPAYS'])) {
|
|
$country_code = $so_params['PRPAYS'];
|
|
} elseif (isset($so_params['CEPAYS'])) {
|
|
$country_code = $so_params['CEPAYS'];
|
|
} else {
|
|
$country_code = 'FR';
|
|
}
|
|
|
|
$db = Db::getInstance();
|
|
$db->executeS('SELECT * FROM '._DB_PREFIX_.'socolissimo_delivery_info WHERE id_cart = '.(int)$id_cart.' AND id_customer ='.(int)$id_customer);
|
|
$num_rows = (int)$db->NumRows();
|
|
if ($num_rows == 0) {
|
|
$sql = 'INSERT INTO '._DB_PREFIX_.'socolissimo_delivery_info
|
|
( `id_cart`, `id_customer`, `delivery_mode`, `prid`, `prname`, `prfirstname`, `prcompladress`,
|
|
`pradress1`, `pradress2`, `pradress3`, `pradress4`, `przipcode`, `prtown`,`cecountry`, `cephonenumber`, `ceemail` ,
|
|
`cecompanyname`, `cedeliveryinformation`, `cedoorcode1`, `cedoorcode2`,`codereseau`, `cename`, `cefirstname`,`lotacheminement`,`distributionsort`,
|
|
`versionplantri`,`dyforwardingcharges`)
|
|
VALUES ('.(int)$id_cart.','.(int)$id_customer.',';
|
|
if ($so_object->delivery_mode == SCFields::RELAY_POINT) {
|
|
$sql .= '\''.pSQL($so_params['DELIVERYMODE']).'\',
|
|
'.(isset($so_params['PRID']) ? '\''.pSQL($so_params['PRID']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CENAME']) ? '\''.pSQL($so_params['CENAME']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEFIRSTNAME']) ? '\''.Tools::ucfirst(pSQL($so_params['CEFIRSTNAME'])).'\'' : '\'\'').',
|
|
'.(isset($so_params['PRCOMPLADRESS']) ? '\''.pSQL($so_params['PRCOMPLADRESS']).'\'' : '\'\'').',
|
|
'.(isset($so_params['PRNAME']) ? '\''.pSQL($so_params['PRNAME']).'\'' : '\'\'').',
|
|
'.(isset($so_params['PRADRESS1']) ? '\''.pSQL($so_params['PRADRESS1']).'\'' : '\'\'').',
|
|
'.(isset($so_params['PRADRESS3']) ? '\''.pSQL($so_params['PRADRESS3']).'\'' : '\'\'').',
|
|
'.(isset($so_params['PRADRESS4']) ? '\''.pSQL($so_params['PRADRESS4']).'\'' : '\'\'').',
|
|
'.(isset($so_params['PRZIPCODE']) ? '\''.pSQL($so_params['PRZIPCODE']).'\'' : '\'\'').',
|
|
'.(isset($so_params['PRTOWN']) ? '\''.pSQL($so_params['PRTOWN']).'\'' : '\'\'').',
|
|
'.(isset($country_code) ? '\''.pSQL($country_code).'\'' : '\'\'').',
|
|
'.(isset($phone_number) ? '\''.pSQL($phone_number).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEEMAIL']) ? '\''.pSQL($so_params['CEEMAIL']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CECOMPANYNAME']) ? '\''.pSQL($so_params['CECOMPANYNAME']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEDELIVERYINFORMATION']) ? '\''.pSQL($so_params['CEDELIVERYINFORMATION']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEDOORCODE1']) ? '\''.pSQL($so_params['CEDOORCODE1']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEDOORCODE2']) ? '\''.pSQL($so_params['CEDOORCODE2']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CODERESEAU']) ? '\''.pSQL($so_params['CODERESEAU']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CENAME']) ? '\''.Tools::ucfirst(pSQL($so_params['CENAME'])).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEFIRSTNAME']) ? '\''.Tools::ucfirst(pSQL($so_params['CEFIRSTNAME'])).'\'' : '\'\'').',
|
|
'.(isset($so_params['LOTACHEMINEMENT']) ? '\''.pSQL($so_params['LOTACHEMINEMENT']).'\'' : '\'\'').',
|
|
'.(isset($so_params['DISTRIBUTIONSORT']) ? '\''.pSQL($so_params['DISTRIBUTIONSORT']).'\'' : '\'\'').',
|
|
'.(isset($so_params['VERSIONPLANTRI']) ? '\''.pSQL($so_params['VERSIONPLANTRI']).'\'' : '\'\'').',
|
|
'.(isset($so_params['DYFORWARDINGCHARGES']) ? '\''.pSQL($so_params['DYFORWARDINGCHARGES']).'\'' : '\'\'').')';
|
|
} else {
|
|
$sql .= '\''.pSQL($so_params['DELIVERYMODE']).'\',\'\',
|
|
'.(isset($so_params['CENAME']) ? '\''.Tools::ucfirst(pSQL($so_params['CENAME'])).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEFIRSTNAME']) ? '\''.Tools::ucfirst(pSQL($so_params['CEFIRSTNAME'])).'\'' : '\'\'').',
|
|
'.(isset($so_params['CECOMPLADRESS']) ? '\''.pSQL($so_params['CECOMPLADRESS']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEADRESS1']) ? '\''.pSQL($so_params['CEADRESS1']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEADRESS4']) ? '\''.pSQL($so_params['CEADRESS4']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEADRESS3']) ? '\''.pSQL($so_params['CEADRESS3']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEADRESS2']) ? '\''.pSQL($so_params['CEADRESS2']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEZIPCODE']) ? '\''.pSQL($so_params['CEZIPCODE']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CETOWN']) ? '\''.pSQL($so_params['CETOWN']).'\'' : '\'\'').',
|
|
'.(isset($country_code) ? '\''.pSQL($country_code).'\'' : '\'\'').',
|
|
'.(isset($phone_number) ? '\''.pSQL($phone_number).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEEMAIL']) ? '\''.pSQL($so_params['CEEMAIL']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CECOMPANYNAME']) ? '\''.pSQL($so_params['CECOMPANYNAME']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEDELIVERYINFORMATION']) ? '\''.pSQL($so_params['CEDELIVERYINFORMATION']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEDOORCODE1']) ? '\''.pSQL($so_params['CEDOORCODE1']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEDOORCODE2']) ? '\''.pSQL($so_params['CEDOORCODE2']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CODERESEAU']) ? '\''.pSQL($so_params['CODERESEAU']).'\'' : '\'\'').',
|
|
'.(isset($so_params['CENAME']) ? '\''.Tools::ucfirst(pSQL($so_params['CENAME'])).'\'' : '\'\'').',
|
|
'.(isset($so_params['CEFIRSTNAME']) ? '\''.Tools::ucfirst(pSQL($so_params['CEFIRSTNAME'])).'\'' : '\'\'').',
|
|
'.(isset($so_params['LOTACHEMINEMENT']) ? '\''.pSQL($so_params['LOTACHEMINEMENT']).'\'' : '\'\'').',
|
|
'.(isset($so_params['DISTRIBUTIONSORT']) ? '\''.pSQL($so_params['DISTRIBUTIONSORT']).'\'' : '\'\'').',
|
|
'.(isset($so_params['VERSIONPLANTRI']) ? '\''.pSQL($so_params['VERSIONPLANTRI']).'\'' : '\'\'').',
|
|
'.(isset($so_params['DYFORWARDINGCHARGES']) ? '\''.pSQL($so_params['DYFORWARDINGCHARGES']).'\'' : '\'\'').')';
|
|
}
|
|
if (Db::getInstance()->execute($sql)) {
|
|
return true;
|
|
}
|
|
} else {
|
|
$table = _DB_PREFIX_.'socolissimo_delivery_info';
|
|
$values = array();
|
|
$values['delivery_mode'] = pSQL($so_params['DELIVERYMODE']);
|
|
$values['cephonenumber'] = pSQL($phone_number);
|
|
// reseting optionnal field
|
|
$values['lotacheminement'] = '';
|
|
$values['distributionsort'] = '';
|
|
$values['versionplantri'] = '';
|
|
|
|
if ($so_object->delivery_mode == SCFields::RELAY_POINT) {
|
|
isset($so_params['PRID']) ? $values['prid'] = pSQL($so_params['PRID']) : '';
|
|
isset($so_params['PRNAME']) ? $values['prname'] = Tools::ucfirst(pSQL($so_params['PRNAME'])) : '';
|
|
isset($delivery_mode[$so_params['DELIVERYMODE']]) ? $values['prfirstname'] = pSQL($delivery_mode[$so_params['DELIVERYMODE']]) : $values['prfirstname'] = 'Colissimo';
|
|
isset($so_params['PRCOMPLADRESS']) ? $values['prcompladress'] = pSQL($so_params['PRCOMPLADRESS']) : '';
|
|
isset($so_params['PRADRESS1']) ? $values['pradress1'] = pSQL($so_params['PRADRESS1']) : '';
|
|
isset($so_params['PRADRESS2']) ? $values['pradress2'] = pSQL($so_params['PRADRESS2']) : '';
|
|
isset($so_params['PRADRESS3']) ? $values['pradress3'] = pSQL($so_params['PRADRESS3']) : '';
|
|
isset($so_params['PRADRESS4']) ? $values['pradress4'] = pSQL($so_params['PRADRESS4']) : '';
|
|
isset($so_params['PRZIPCODE']) ? $values['przipcode'] = pSQL($so_params['PRZIPCODE']) : '';
|
|
isset($so_params['PRTOWN']) ? $values['prtown'] = pSQL($so_params['PRTOWN']) : '';
|
|
isset($country_code) ? $values['cecountry'] = pSQL($country_code) : '';
|
|
isset($so_params['CEEMAIL']) ? $values['ceemail'] = pSQL($so_params['CEEMAIL']) : '';
|
|
isset($so_params['CEDELIVERYINFORMATION']) ? $values['cedeliveryinformation'] = pSQL($so_params['CEDELIVERYINFORMATION']) : '';
|
|
isset($so_params['CEDOORCODE1']) ? $values['cedoorcode1'] = pSQL($so_params['CEDOORCODE1']) : '';
|
|
isset($so_params['CEDOORCODE2']) ? $values['cedoorcode2'] = pSQL($so_params['CEDOORCODE2']) : '';
|
|
isset($so_params['CECOMPANYNAME']) ? $values['cecompanyname'] = pSQL($so_params['CECOMPANYNAME']) : '';
|
|
isset($so_params['CODERESEAU']) ? $values['codereseau'] = pSQL($so_params['CODERESEAU']) : '';
|
|
isset($so_params['CENAME']) ? $values['cename'] = pSQL($so_params['CENAME']) : '';
|
|
isset($so_params['CEFIRSTNAME']) ? $values['cefirstname'] = pSQL($so_params['CEFIRSTNAME']) : '';
|
|
isset($so_params['LOTACHEMINEMENT']) ? $values['lotacheminement'] = pSQL($so_params['LOTACHEMINEMENT']) : '';
|
|
isset($so_params['DISTRIBUTIONSORT']) ? $values['distributionsort'] = pSQL($so_params['DISTRIBUTIONSORT']) : '';
|
|
isset($so_params['VERSIONPLANTRI']) ? $values['versionplantri'] = pSQL($so_params['VERSIONPLANTRI']) : '';
|
|
isset($so_params['DYFORWARDINGCHARGES']) ? $values['dyforwardingcharges'] = pSQL($so_params['DYFORWARDINGCHARGES']) : '';
|
|
} else {
|
|
isset($so_params['PRID']) ? $values['prid'] = pSQL($so_params['PRID']) : $values['prid'] = '';
|
|
isset($so_params['CENAME']) ? $values['prname'] = Tools::ucfirst(pSQL($so_params['CENAME'])) : '';
|
|
isset($so_params['CEFIRSTNAME']) ? $values['prfirstname'] = Tools::ucfirst(pSQL($so_params['CEFIRSTNAME'])) : '';
|
|
isset($so_params['CECOMPLADRESS']) ? $values['prcompladress'] = pSQL($so_params['CECOMPLADRESS']) : '';
|
|
isset($so_params['CEADRESS1']) ? $values['pradress1'] = pSQL($so_params['CEADRESS1']) : '';
|
|
isset($so_params['CEADRESS4']) ? $values['pradress2'] = pSQL($so_params['CEADRESS4']) : '';
|
|
isset($so_params['CEADRESS3']) ? $values['pradress3'] = pSQL($so_params['CEADRESS3']) : '';
|
|
isset($so_params['CEADRESS2']) ? $values['pradress4'] = pSQL($so_params['CEADRESS2']) : '';
|
|
isset($so_params['CEZIPCODE']) ? $values['przipcode'] = pSQL($so_params['CEZIPCODE']) : '';
|
|
isset($so_params['CETOWN']) ? $values['prtown'] = pSQL($so_params['CETOWN']) : '';
|
|
isset($country_code) ? $values['cecountry'] = pSQL($country_code) : '';
|
|
isset($so_params['CEEMAIL']) ? $values['ceemail'] = pSQL($so_params['CEEMAIL']) : '';
|
|
isset($so_params['CEDELIVERYINFORMATION']) ? $values['cedeliveryinformation'] = pSQL($so_params['CEDELIVERYINFORMATION']) : '';
|
|
isset($so_params['CEDOORCODE1']) ? $values['cedoorcode1'] = pSQL($so_params['CEDOORCODE1']) : '';
|
|
isset($so_params['CEDOORCODE2']) ? $values['cedoorcode2'] = pSQL($so_params['CEDOORCODE2']) : '';
|
|
isset($so_params['CECOMPANYNAME']) ? $values['cecompanyname'] = pSQL($so_params['CECOMPANYNAME']) : '';
|
|
isset($so_params['CODERESEAU']) ? $values['codereseau'] = pSQL($so_params['CODERESEAU']) : '';
|
|
isset($so_params['CENAME']) ? $values['cename'] = pSQL($so_params['CENAME']) : '';
|
|
isset($so_params['CEFIRSTNAME']) ? $values['cefirstname'] = pSQL($so_params['CEFIRSTNAME']) : '';
|
|
isset($so_params['LOTACHEMINEMENT']) ? $values['lotacheminement'] = pSQL($so_params['LOTACHEMINEMENT']) : '';
|
|
isset($so_params['DISTRIBUTIONSORT']) ? $values['distributionsort'] = pSQL($so_params['DISTRIBUTIONSORT']) : '';
|
|
isset($so_params['VERSIONPLANTRI']) ? $values['versionplantri'] = pSQL($so_params['VERSIONPLANTRI']) : '';
|
|
isset($so_params['DYFORWARDINGCHARGES']) ? $values['dyforwardingcharges'] = pSQL($so_params['DYFORWARDINGCHARGES']) : '';
|
|
}
|
|
$where = ' `id_cart` =\''.(int)$id_cart.'\' AND `id_customer` =\''.(int)$id_customer.'\'';
|
|
|
|
if (Db::getInstance()->autoExecute($table, $values, 'UPDATE', $where)) {
|
|
return true;
|
|
}
|
|
}
|
|
}
|