コード例 #1
0
 function editAction()
 {
 	$id = $this->getRequest()->getParam("id");
 	$db = new Loan_Model_DbTable_DbLoanILPayment();
 	if($this->getRequest()->isPost()){
 		$data = $this->getRequest()->getPost();
 		//print_r($data);exit();
 		$db->editQuickPayment($id,$data);
 		if(isset($data["save_new"])){
 			Application_Form_FrmMessage::Sucessfull("INSERT_SUCCESS!","/loan/il-quick-payment/add");
 		}elseif(isset($data["save_close"])){
 			Application_Form_FrmMessage::Sucessfull("INSERT_SUCCESS!","/loan/IlQuickPayment");
 		}
 	}
 	
 	$quickPayment = $db->getIlQuickPaymentById($id);
 	$this->view->quickPayment = $quickPayment;
 	
 	$quickPaymentDetail = $db->getIlQuickPaymentDetailById($id);
 	$this->view->quickPaymentDetail = $quickPaymentDetail;
 	
 	$frm = new Loan_Form_FrmIlPayment();
 	$frm_loan=$frm->quickPayment();
 	Application_Model_Decorator::removeAllDecorator($frm_loan);
 	$db_keycode = new Application_Model_DbTable_DbKeycode();
 	$this->view->keycode = $db_keycode->getKeyCodeMiniInv();
 	 
 	$this->view->graiceperiod = $db_keycode->getSystemSetting(9);
 	$this->view->frm_ilpayment = $frm_loan;
 	 
 	$this->view->co = $db->getAllCo();
 }