Ejemplo n.º 1
0
 function getproductAction()
 {
     if ($this->getRequest()->isPost()) {
         $post = $this->getRequest()->getPost();
         $dbbooking = new Application_Model_DbTable_Dbstuffrental();
         $dbbooking->createSessionStuffBooking($post, 2);
         $this->_redirect("stuffbooking/index");
     }
 }
Ejemplo n.º 2
0
 static function getProductRankingDayPrice($product_id)
 {
     $sql = " \r\n\t\tSELECT id,(SELECT CONCAT(from_amountday,'-',to_amountday,' Days') FROM `ldc_rankday` WHERE id=package_id) AS package_name,\r\n\t\t  (SELECT equipment_name FROM `ldc_stuff` WHERE id=stuff_id) AS equipment_name,price \r\n           FROM `ldc_stuff_details` WHERE status=1 AND stuff_id = {$product_id} ";
     $db = new Application_Model_DbTable_Dbstuffrental();
     return $db->getGlobalDb($sql);
 }
Ejemplo n.º 3
0
 function getstuffidAction()
 {
     $id = $this->getRequest()->getParam("id");
     if ($id) {
         $dbbooking = new Application_Model_DbTable_Dbstuffrental();
         $dbbooking->createSessionStuffBooking($id, 1);
         $this->_redirect("stuffbooking/index");
     } else {
         $this->_redirect("stuffbooking/index");
     }
 }
Ejemplo n.º 4
0
 function paymentAction()
 {
     $this->_helper->layout()->disableLayout();
     $db = new Application_Model_DbTable_DbGlobal();
     $db_mail = new Application_Model_DbTable_DbSendEmail();
     $id = $this->getRequest()->getParam("id");
     if ($this->getRequest()->isPost()) {
         $data = $this->getRequest()->getPost();
         if ($id == 1) {
             $session_step_one = new Zend_Session_Namespace('booking');
             $user_ip = $session_step_one->user_ip;
             $db->updateVisualBookingStebSix($user_ip, $data);
             $booking_id = $db->addBooking($user_ip);
             $db_mail->sendInvoiceEmail($booking_id);
             $session_step_one = new Zend_Session_Namespace('booking');
             $session_step_one->unsetAll();
             $session_step_two = new Zend_Session_Namespace('step_two');
             $session_step_two->unsetAll();
             $session_step_three = new Zend_Session_Namespace('step_three');
             $session_step_three->unsetAll();
             $session_step_four = new Zend_Session_Namespace('step_four');
             $session_step_four->unsetAll();
             $session_step_five = new Zend_Session_Namespace('step_five');
             $session_step_five->unsetAll();
             Application_Form_FrmMessage::redirectUrl("/index");
         } elseif ($id == 2) {
             $db_citytour = new Application_Model_DbTable_Dbbookingcitytour();
             $booking_id = $db_citytour->addCityTourBooking($data);
             $db_mail->sendInvoiceEmail($booking_id);
             $session = new Zend_Session_Namespace('bookcitytour');
             $session->unsetAll();
             Application_Form_FrmMessage::redirectUrl("/index");
         } elseif ($id == 3) {
             $db_citytour = new Application_Model_DbTable_Dbstuffrental();
             $booking_id = $db_citytour->addProductRental($data);
             $db_mail->sendInvoiceEmail($booking_id);
             $session = new Zend_Session_Namespace('stuffbooking');
             $session->unsetAll();
             Application_Form_FrmMessage::redirectUrl("/index");
         } elseif ($id == 4) {
             $db_citytour = new Application_Model_DbTable_Dbguiderental();
             $booking_id = $db_citytour->addProductRental($data);
             $db_mail->sendInvoiceEmail($booking_id);
             //     			$session =new Zend_Session_Namespace('guidebooking');
             //     			$session->unsetAll();
             //     			Application_Form_FrmMessage::redirectUrl("/index");
         }
     }
 }