[-] FO : #PSFV-815 - Moving an SQL request on the controller to the model

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14762 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
mDeflotte
2012-04-19 09:55:13 +00:00
parent 264885203d
commit 1cb4c8a6bb
2 changed files with 30 additions and 19 deletions
+1 -19
View File
@@ -215,25 +215,7 @@ class AddressControllerCore extends FrontController
{
// Update id address of the current cart if necessary
if (isset($address_old) && $address_old->isUsed())
{
if ($this->context->cart->id_address_invoice == $address_old->id)
{
$to_update = true;
$this->context->cart->id_address_invoice = (int)$address->id;
}
if ($this->context->cart->id_address_delivery == $address_old->id)
{
$to_update = true;
$this->context->cart->id_address_delivery = (int)$address->id;
}
$this->context->cart->update();
$sql = 'UPDATE `'._DB_PREFIX_.'cart_product`
SET `id_address_delivery` = '.(int)$address->id.'
WHERE `id_cart` = '.(int)$this->context->cart->id.'
AND `id_address_delivery` = '.(int)$address_old->id;
Db::getInstance()->execute($sql);
}
$this->context->cart->updateAddressId($address_old->id, $address->id);
if ($this->ajax)
{