Для сохранения и загрузки заказов воспользуйтесь классом-обёрткой nc_netshop_order.
$order = nc_netshop->load_order($id);
$order = new nc_netshop_order($res[$f_RowNum]);
$items = $order->get_items(); $order_totals = $items->sum('TotalPrice');
Комментарии 4
foreach ($order->get_cart_discounts() as $discount){
if($discount['id']){
echo " ".$discount['name']."-".$discount['sum']." р ";
} else {
echo htmlspecialchars($discount['name']);
}
}
}