init
Showing
1 changed file
with
4 additions
and
1 deletions
| ... | @@ -23,7 +23,10 @@ class Finance extends CI_Controller { | ... | @@ -23,7 +23,10 @@ class Finance extends CI_Controller { |
| 23 | 23 | ||
| 24 | public function addtime($id) | 24 | public function addtime($id) |
| 25 | { | 25 | { |
| 26 | $this->load->view('finance/addtime',$id); | 26 | $data = array( |
| 27 | 'id'=>$id | ||
| 28 | ); | ||
| 29 | $this->load->view('finance/addtime',$data); | ||
| 27 | } | 30 | } |
| 28 | 31 | ||
| 29 | public function chargedetail() | 32 | public function chargedetail() | ... | ... |
-
Please register or sign in to post a comment