[-] 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
+29
View File
@@ -193,6 +193,35 @@ class CartCore extends ObjectModel
return $return;
}
/**
* Update the address id of the cart
*
* @param int $id_address Current address id to change
* @param int $id_address_new New address id
*/
public function updateAddressId($id_address, $id_address_new)
{
$to_update = false;
if ($this->id_address_invoice == $id_address)
{
$to_update = true;
$this->context->cart->id_address_invoice = $id_address_new;
}
if ($this->id_address_delivery == $id_address)
{
$to_update = true;
$this->id_address_delivery = $id_address_new;
}
if ($to_update)
$this->update();
$sql = 'UPDATE `'._DB_PREFIX_.'cart_product`
SET `id_address_delivery` = '.(int)$id_address_new.'
WHERE `id_cart` = '.(int)$this->id.'
AND `id_address_delivery` = '.(int)$id_address;
Db::getInstance()->execute($sql);
}
public function delete()
{