PO Screen desing

This commit is contained in:
gandhimathi Bharathirajan 2017-04-27 19:48:06 +05:30
parent d37909a1a9
commit 91d22743ca
2 changed files with 13 additions and 4 deletions

View File

@ -32,9 +32,17 @@ class requisitionform extends BaseController
function requisition()
{
$this->global['pageTitle'] = 'Siddharth : Requisition';
$this->global['pageTitle'] = 'Siddharth : Raise Requisition';
$data['RequestType'] = $this->purchaseorder_model->getConfigValue('C004');
$data['EmpList'] = $this->purchaseorder_model->getAllEmployees();
$data['MaterialList'] = $this->purchaseorder_model->getRawMaterialList();
$data['CostCenter'] = $this->purchaseorder_model->getCostCenter();
$this->loadViews("requisitionform", $this->global, NULL);
$this->loadViews("requisitionform", $this->global, $data,null);
}
function pageNotFound()

View File

@ -32,8 +32,9 @@ class requisitionlistapproval extends BaseController
{
$this->global['pageTitle'] = 'Siddharth : Requisition Approval List';
$this->loadViews("requisitionlistapproval", $this->global, NULL);
$data['Requeststatus'] = $this->purchaseorder_model->getConfigValue('C016');
$this->loadViews("requisitionlistapproval", $this->global, $data,null);
}