Costcode error fixed

This commit is contained in:
gandhimathi Bharathirajan 2017-06-09 12:22:53 +05:30
parent 55f455a0e1
commit a68e5c43b8

View File

@ -37,14 +37,15 @@ class purchaseorder extends BaseController
function requisition() function requisition()
{ {
$data['DeptList'] = $this->purchaseorder_model->getDepartmentListForAllReq();
$Req_No='';
$IsArray='';
$data['stList'] = $this->purchaseorder_model->getStatusListforAllReq(); $data['stList'] = $this->purchaseorder_model->getStatusListforAllReq();
/* Cost code from Requisition - Client Review Fix
Start here */
// $data['ReqList'] = $this->purchaseorder_model->getRequistionListbySearch();
$data['ReqList'] = $this->purchaseorder_model->getRawPOMaterialList($Req_No,$IsArray); $data['ReqList'] = $this->purchaseorder_model->getAllRequistionListToCreatePO();
/* End Here */
$this->global['pageTitle'] = 'Siddharth : Create PO from Requisition List'; $this->global['pageTitle'] = 'Siddharth : Create PO from Requisition List';
$this->loadViews("createPOfromRequistion", $this->global, $data,Null); $this->loadViews("createPOfromRequistion", $this->global, $data,Null);