27 lines
964 B
PHP
Executable File
27 lines
964 B
PHP
Executable File
<?php
|
|
/*
|
|
Модуль корзины и оформления заказа
|
|
*/
|
|
//Вынимаем товар из корзины
|
|
unset($a);
|
|
$_SESSION['user_id'] == '' ? $a['id']=$_COOKIE['user_id'] : $a['id']=$_SESSION['user_id'];
|
|
$a['status']='n';
|
|
$list=$db->get_massiv('cart', $a);
|
|
$num=$db->num;
|
|
for($i = 0; $i < $num; $i++){
|
|
//получаем цену
|
|
unset($b);
|
|
$b['id']=$list[$i]['tovar_id'];
|
|
$list[$i]['akccena']=$db->get_val('m_tovar', $b, 'akccena');
|
|
$list[$i]['img']=$db->get_val('m_tovar', $b, 'img');
|
|
$list[$i]['cena']=$db->get_val('m_tovar', $b, 'cena');
|
|
$list[$i]['cena2']=$list[$i]['cena'];
|
|
$list[$i]['naim']=$db->get_val('m_tovar', $b, 'naim');
|
|
if ($list[$i]['akccena']>0){
|
|
$list[$i]['itog']=$list[$i]['akccena'] * $list[$i]['col'];
|
|
$list[$i]['cena']=$list[$i]['akccena'];
|
|
}else
|
|
$list[$i]['itog']=$list[$i]['cena'] * $list[$i]['col'];
|
|
}
|
|
$smarty->assign('list',@$list);
|
|
?>
|