public function editMealAction() { $rid = $this->_getParam('rid', false); if (false == $rid) { $this->_redirect('restaurant/admin/manager'); } /** * Get all provice CODE */ $objCountry = new Models_Country(); $this->view->allProvinces = $objCountry->getAllProvinces(); /** * Get some list */ $objCat = new Models_Category(); $this->view->leadTimeNormal = $objCat->getAllValues('lead_time_normal'); $this->view->leadTimeCatering = $objCat->getAllValues('lead_time_catering'); // echo '<pre>';print_r($this->view->allProvinces);die; /** * Get data */ $objMeal = new Models_Meal(); $data = $this->_getParam('data', false); $id = $this->_getParam('id', false); $error = ''; if (false != $data) { /** * Insert new meal */ $newMeal = $data; $newMeal['price'] = number_format($newMeal['price'], 2, '.', ''); if (null != $newMeal['image']) { $newMeal['image'] = $this->getImagePath($newMeal['image']); $newMeal['image_thumb'] = $this->getThumbnailImagePath($newMeal['image']); } // echo '<pre>';print_r($newMeal);die; $objMeal->update($newMeal, array('meal_id=?' => $id)); $this->session->mealMessage = array('success' => true, 'message' => Vi_Language::translate('Edit meal successfully')); $this->_redirect('restaurant/admin/meal-manager/rid/' . $rid . '#listofmeal'); } else { /** * Loading data */ $data = $objMeal->find($id)->toArray(); $data = current($data); if (false == $data) { $this->_redirect('restaurant/admin/meal-manager/rid/' . $rid); } } $cuisines = $objCat->getAllValues('cuisine'); $this->view->cuisines = $cuisines; $this->view->data = $data; $this->view->error = $error; $this->view->headTitle('Edit Meal'); $this->view->menu = array('restaurant'); }
public function newMealAction() { $rid = Vi_Registry::getRestaurantIdFromLoggedUser(); if (false == $rid) { $this->_redirect('restaurant/meal/manager'); } $objRes = new Models_Restaurant(); $res = $objRes->find($rid)->toArray(); $res = current($res); if (false == $res) { $this->_redirect(''); } /** * Get data */ $objMeal = new Models_Meal(); $data = $this->_getParam('data', false); $error = ''; if (false != $data) { /** * Insert new meal */ $newMeal = $data; $newMeal['price'] = number_format($newMeal['price'], 2, '.', ''); if (null != $newMeal['image']) { $newMeal['image'] = $this->getImagePath($newMeal['image']); $newMeal['image_thumb'] = $this->getThumbnailImagePath($newMeal['image']); } $newMeal['created_date'] = time(); $newMeal['restaurant_id'] = $rid; // echo '<pre>';print_r($newMeal);die; $objMeal->insert($newMeal); $this->session->mealMessage = 'New meal is created successfully'; $this->_redirect('restaurant/meal/manager/type/' . $data['type']); } $this->view->data = $data; $this->view->error = $error; $this->view->res = $res; $this->view->headTitle('New Meal'); $this->view->menu = array('meal-manager'); }
/** * List all meal follow restaurant */ public function indexAction() { $this->view->headTitle('Cart information'); //-- begin add information into cart $meal_id = $this->_getParam('meal_id', false); $quantity = $this->_getParam('quantity', false); $mark = $_SESSION['mark']; //$this->_getParam('mark', false); $state = $this->_getParam('state', 0); //-- state=0: delete meal in session cart $date = $_SESSION['date']; //$this->_getParam('date', false); $time = $_SESSION['time']; //$this->_getParam('time', false); $res_id = $this->_getParam('res_id', false); if (false === $res_id) { $this->_redirect(''); } $order_id = session_id(); //-- begin delete meal in session cart if (0 != $state) { foreach ($_SESSION['cart'][$order_id] as $key => $value) { if ($key != $meal_id) { $_SESSION['cart_delete'][$order_id][$key] = $value; } } //-- begin calculate sum $_SESSION['cart_delete'][$order_id]['subtotal'] = 0; foreach ($_SESSION['cart_delete'][$order_id] as $key => $value) { if ($value['total_money'] > 0) { $_SESSION['cart_delete'][$order_id]['subtotal'] += $value['total_money']; } } //-- end calculate sum $_SESSION['cart_delete'][$order_id]['ordertotal'] = $_SESSION['cart_delete'][$order_id]['subtotal'] + $_SESSION['cart'][$order_id]['tax'] + $_SESSION['cart'][$order_id]['shipping']; unset($_SESSION['cart'][$order_id]); $_SESSION['cart'][$order_id] = $_SESSION['cart_delete'][$order_id]; unset($_SESSION['cart_delete'][$order_id]); $this->view->session_cart = $_SESSION['cart'][$order_id]; } else { //-- end delete meal in session cart if (false != $meal_id) { if (false != $quantity) { $_SESSION['cart'][$order_id][$meal_id]['quantity'] = $quantity; } else { if (isset($_SESSION['cart'][$order_id][$meal_id]['meal_id']) && $_SESSION['cart'][$order_id][$meal_id]['meal_id'] == $meal_id) { $_SESSION['cart'][$order_id][$meal_id]['quantity'] = $_SESSION['cart'][$order_id][$meal_id]['quantity'] + 1; } else { $objMeal = new Models_Meal(); $arr_meal = $objMeal->getDataById($meal_id); $_SESSION['cart'][$order_id][$meal_id]['meal_id'] = $arr_meal['meal_id']; $_SESSION['cart'][$order_id][$meal_id]['image'] = $arr_meal['image_thumb'] ? $arr_meal['image_thumb'] : $arr_meal['image']; $_SESSION['cart'][$order_id][$meal_id]['name'] = $arr_meal['name']; $_SESSION['cart'][$order_id][$meal_id]['description'] = $arr_meal['description']; $_SESSION['cart'][$order_id][$meal_id]['price'] = $arr_meal['price']; $_SESSION['cart'][$order_id][$meal_id]['quantity'] = 1; } } $_SESSION['cart'][$order_id][$meal_id]['total_money'] = $_SESSION['cart'][$order_id][$meal_id]['price'] * $_SESSION['cart'][$order_id][$meal_id]['quantity']; $_SESSION['cart'][$order_id]['subtotal'] = 0; $_SESSION['cart'][$order_id]['restaurant_id'] = $res_id; //-- begin calculate sum foreach ($_SESSION['cart'][$order_id] as $key => $value) { if ($value['total_money'] > 0 && is_numeric($key)) { $_SESSION['cart'][$order_id]['subtotal'] += $value['total_money']; } } //-- end calculate sum $_SESSION['cart'][$order_id]['tax'] = $_SESSION['cart'][$order_id]['subtotal'] * Vi_Registry::getConfig('taxFee'); //-- begin get shipping fee for catering delivery and catering if (strcmp($mark, 'catering_delivery') == 0 || strcmp($mark, 'delivery') == 0) { $objRestaurant = new Models_Restaurant(); $arrRestaurant = $objRestaurant->getShipFeeFromMealId($meal_id); if (strcmp($mark, 'delivery_charge') == 0) { $shippingFee = $arrRestaurant['delivery_charge']; } else { $shippingFee = $arrRestaurant['catering_delivery_charge']; } $_SESSION['cart'][$order_id]['shipping'] = $shippingFee; } else { $_SESSION['cart'][$order_id]['shipping'] = 0; } //-- end get shipping fee for catering delivery and catering $_SESSION['cart'][$order_id]['ordertotal'] = $_SESSION['cart'][$order_id]['subtotal'] + $_SESSION['cart'][$order_id]['tax'] + $_SESSION['cart'][$order_id]['shipping']; $this->view->session_cart = $_SESSION['cart'][$order_id]; } else { $this->view->session_cart = ''; } } $_SESSION['cart'][$order_id]['date'] = $date; $_SESSION['cart'][$order_id]['time'] = $time; $_SESSION['cart'][$order_id]['order_service'] = $mark; // echo "<pre>";print_r($_SESSION['cart'][$order_id]);echo "</pre>"; $this->view->subtotal = $_SESSION['cart'][$order_id]['subtotal']; $this->view->tax = $_SESSION['cart'][$order_id]['tax']; $this->view->shipping = $_SESSION['cart'][$order_id]['shipping']; $this->view->ordertotal = $_SESSION['cart'][$order_id]['ordertotal']; //-- end add information into cart $this->view->order_id = $order_id; $this->view->meal_id = $meal_id; $this->view->mark = strtoupper($mark); $this->view->date = $date; $this->view->time = strtoupper($time); }