Total Pending Requests
input->post('financialyear')){
$ab=$this->input->post('financialyear');
echo '('.$ab.')';
echo ' ';
}
if($this->input->post('month')){
$m=$this->input->post('month');
echo '('.$m.')';
echo ' ';
}
if($this->input->post('from_date') && $this->input->post('to_date')){
$frm = $this->input->post('from_date');
$t = $this->input->post('to_date');
echo $frm.'-to-'.$t;
}
if($this->input->post('aging_from') && $this->input->post('aging_to')){
$tfrm = $this->input->post('aging_from');
$tt = $this->input->post('aging_to');
echo 'Aging between'.' '.$tfrm.'-to-'.$tt.' '.'days';
}
?>
| Requistion Date | Requistion Number | Requested By | Department | Requistion Type | Aging |
|---|---|---|---|---|---|
| ReqDate?> | ReqNo?> | Requestedby?> | DepartmentName?> | ReqType?> | Aging?> |