コード例 #1
0
ファイル: credit_payment.php プロジェクト: noikiy/vis
 public function detailsforcustomer()
 {
     $customerId = $this->input->post('customerId');
     $customerService = new CustomerService();
     $details = $customerService->fetchCustomersWithCredit();
     $this->renderAjaxView('detailsforcustomer', array('details' => $details));
 }