From 92e57c6c059a7684d81cbb800b0f1b6e347c1124 Mon Sep 17 00:00:00 2001 From: saravanakumar_kandasami Date: Tue, 30 May 2017 15:17:57 +0530 Subject: [PATCH] Emergency po --- application/config/constants.php | 22 +- application/config/routes.php | 5 +- application/controllers/c_test.php | 8 +- .../controllers/emergencypurchaseorder.php | 720 +++ application/controllers/login.php | 9 +- application/controllers/purchaseorder.php | 581 +- application/controllers/purchaseorderform.php | 4 +- application/controllers/requisitionform.php | 7 +- .../controllers/servicepurchaseorder.php | 282 + application/logs/log-2017-05-22.php | 97 +- application/logs/log-2017-05-23.php | 190 +- application/logs/log-2017-05-24.php | 1376 +++++ application/logs/log-2017-05-25.php | 227 + application/logs/log-2017-05-26.php | 108 + application/logs/log-2017-05-27.php | 73 + application/logs/log-2017-05-29.php | 217 + application/logs/log-2017-05-30.php | 418 ++ application/models/purchaseorder_model.php | 258 +- application/models/requistion_model.php | 10 +- .../third_party/dompdf/lib/fonts/log.htm | 263 +- .../views/EditservicePurchaseorder.php | 747 ++- application/views/POlist.php | 6 +- application/views/addCostCenter.php | 2 +- application/views/alterpurchaseorder.php | 5258 +++++++++++------ application/views/createPOfromRequistion.php | 136 +- application/views/create_pdf.php | 11 +- .../views/editRevenuepurchaseorder.php | 3881 ++++++++++++ application/views/editrequisitionform.php | 150 +- application/views/importpo.php | 338 +- application/views/includes/header.php | 10 +- application/views/includes/pdffooter.php | 4 +- application/views/includes/pdfheader.php | 9 +- application/views/purchaseorder.php | 3550 ++++++----- application/views/requisitionform.php | 171 +- application/views/requisitionlistapproval.php | 143 +- application/views/revenuepopdf.php | 213 +- application/views/servicePurchaseorder.php | 875 +-- application/views/servicepopdf.php | 198 +- assets/dist/img/red.png | Bin 0 -> 2016 bytes assets/js/CreatePOValidation.js | 36 +- .../datatables/jquery.dataTables.min.js | 4 +- 41 files changed, 15728 insertions(+), 4889 deletions(-) create mode 100644 application/controllers/emergencypurchaseorder.php create mode 100644 application/controllers/servicepurchaseorder.php create mode 100644 application/logs/log-2017-05-24.php create mode 100644 application/logs/log-2017-05-25.php create mode 100644 application/logs/log-2017-05-26.php create mode 100644 application/logs/log-2017-05-27.php create mode 100644 application/logs/log-2017-05-29.php create mode 100644 application/logs/log-2017-05-30.php create mode 100644 application/views/editRevenuepurchaseorder.php create mode 100644 assets/dist/img/red.png diff --git a/application/config/constants.php b/application/config/constants.php index cb6944d7..4365f5bd 100644 --- a/application/config/constants.php +++ b/application/config/constants.php @@ -50,7 +50,7 @@ define('ROLE_ACCOUNTS', '8');*/ define('SEGMENT', 2); -/************** Status code */ +/************** Requistion Status code */ define('REQ_DRAFT', 'ST001'); define('REQ_PENDING_APPROVAL', 'ST002'); define('REQITEM_NEW', 'ST003'); @@ -70,6 +70,17 @@ define('REQITEM_PARTIALLY_PO_CREATED', 'ST023'); define('REQUISTSTATUS', '0'); define('REQUISTITEMSTATUS', '1'); +/* Purchase Order Status */ + +define('PO_DRAFT', 'ST014'); +define('PO_CREATED', 'ST015'); +define('PO_INPROGRESS', 'ST016'); +define('PO_DISPATCHED', 'ST017'); +define('PO_DELIVERED', 'ST018'); +define('PO_CANCELLED', 'ST019'); +define('PO_ONHOLD', 'ST020'); +define('PO_CLOSED', 'ST021'); + /* Department Code */ define('ADMIN', 'DEP01'); @@ -138,16 +149,7 @@ define('SERVICETAX_HIGHEREDUCESS_1PERCENT', '((1/1 define('SERVICETAX_KRISHIKALYAN', '(((.5)/100) * basicValue)'); define('SERVICETAX_SWACHHBHARAT', '(((.5)/100) * basicValue)'); -/* Purchase Order Status */ -define('PO_DRAFT', 'ST014'); -define('PO_CREATED', 'ST015'); -define('PO_INPROGRESS', 'ST016'); -define('PO_DISPATCHED', 'ST017'); -define('PO_DELIVERED', 'ST018'); -define('PO_CANCELLED', 'ST019'); -define('PO_ONHOLD', 'ST020'); -define('PO_CLOSED', 'ST021'); diff --git a/application/config/routes.php b/application/config/routes.php index 4ada5ad3..26d98d01 100644 --- a/application/config/routes.php +++ b/application/config/routes.php @@ -102,7 +102,7 @@ $route['editOld/(:num)'] = "user/editOld/$1"; $route['editUser'] = "user/editUser"; $route['editOldPO'] = "purchaseorder/editOldPO"; $route['editOldPO/(:num)'] = "purchaseorder/editOldPO/$1"; -$route['editPO'] = "purchaseorder/editPO"; +//$route['editPO'] = "purchaseorder/editPO"; $route['editOldsupplier'] = "supplier/editOldsupplier"; $route['editOldsupplier/(:num)'] = "supplier/editOldsupplier/$1"; $route['editsupplier'] = "supplier/editsupplier"; @@ -157,7 +157,8 @@ $route['EditRequisition'] = "requisitionform/EditRequistionForm"; $route['CreatePO'] = "purchaseorder/requisition"; $route['PurchaseOrder'] = "purchaseorder/CreatePurchaseOrder"; $route['purchaseorderListing'] = "purchaseorder/PurchaseOrderList"; -$route['EditServicePO'] = "purchaseorder/EditPurchaseOrder"; +$route['EditPO'] = "purchaseorder/EditPurchaseOrder"; +$route['EmergencyPO'] = "emergencypurchaseorder/CreateEmergencyPO"; /* End of file routes.php */ /* Location: ./application/config/routes.php */ diff --git a/application/controllers/c_test.php b/application/controllers/c_test.php index 5c843a00..ba5f639a 100644 --- a/application/controllers/c_test.php +++ b/application/controllers/c_test.php @@ -18,17 +18,17 @@ class C_test extends BaseController { // Load all views as normal - //$PONO = $_GET['PO']; + $PONO = $_GET['PO']; - //$data['PODetail'] = $this->purchaseorder_model->getPurchaseOrder($PONO); - //$data['POLineItem'] = $this->purchaseorder_model->getPOLineItem($PONO); + $data['PODetail'] = $this->purchaseorder_model->getPurchaseOrder($PONO); + $data['POLineItem'] = $this->purchaseorder_model->getPOLineItem($PONO); //$this->global['pageTitle'] = 'Purchase Order Report'; // Add header to pdf $this->load->view('includes/pdfheader'); // Load the pdf page with multiviews - $this->load->View("create_pdf", NULL); + $this->load->View("create_pdf", $data, NULL); // Add header to pdf $this->load->view('includes/pdffooter'); diff --git a/application/controllers/emergencypurchaseorder.php b/application/controllers/emergencypurchaseorder.php new file mode 100644 index 00000000..1153eca3 --- /dev/null +++ b/application/controllers/emergencypurchaseorder.php @@ -0,0 +1,720 @@ +load->model('purchaseorder_model'); + + $this->load->library('session'); + $this->load->library('form_validation'); + $this->load->model('requistion_model'); + $this->isLoggedIn(); + } + + + + + + function CreateEmergencyPO() + { + + $this->global['pageTitle'] = 'Siddharth : Create Emergency Purchase Order'; + + $data['RequestType'] = $this->requistion_model->getConfigValue('C004'); + + $data['Suplist'] = $this->purchaseorder_model->getSupplierName(); + + $data['DeptList'] = $this->purchaseorder_model->getDepartmentListForAllReq(); + + $data['CompanyDetails'] = $this->purchaseorder_model->getCompanyInformation(); + + $data['MaxPODate'] = $this->purchaseorder_model->getLastCreatedPODate(); + + $this->loadViews("alterpurchaseorder", $this->global, $data,Null); + + } + + + /** + * This function used to show the Purchase Order Screen + */ + + function CreatePurchaseOrder() + { + + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('txtReqNo', 'txtReqNo', 'callback_Req_validate'); + + if($this->form_validation->run() == FALSE) + { + $this->requisition(); + //echo 'Validate method called'; + } + else + { + + $this->global['pageTitle'] = 'Siddharth : Purchase order form'; + $data['TaxType'] = $this->purchaseorder_model->getConfigValue('C006'); + $data['FreightType'] = $this->purchaseorder_model->getConfigValue('C018'); + $data['Suplist'] = $this->purchaseorder_model->getSupplierName(); + $SelectedReq = json_decode($this->input->post('txtReqNo')); + + $Req = $SelectedReq->Req; + $data['ReqList'] = $Req ; + $ReqArray = array(); + $ReqType = ''; + $result = array(); + + foreach ($Req as $SID): + $ReqArray[] = $SID->ReqNo ; + $result[] = $this->purchaseorder_model->getRawPOMaterialList($SID->ReqNo); + $ReqType = $SID->ReqType; + // echo $SID->ReqNo; + + endforeach; + //print_r ($result); + $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); + $Year = $dt->format('Y'); + $data['CostList'] = $this->purchaseorder_model->getCostCenterbyRequist('',$Year,$ReqType); + $data['MaterialList'] = $result; //$this->purchaseorder_model->getRawMaterialList($ReqType,$ReqArray); + //print_r ($data['MaterialList']); + $data['RequistionDetails'] = $this->purchaseorder_model->getRequistDetails($ReqArray); + $data['CompanyDetails'] = $this->purchaseorder_model->getCompanyInformation(); + $data['MaxPODate'] = $this->purchaseorder_model->getLastCreatedPODate(); + + $ViewName = ''; + if($ReqType == REVENUE) + { + $ViewName = 'Purchaseorder'; + } + else if($ReqType == SERVICE) + { + $ViewName = 'servicePurchaseorder'; + } + $this->loadViews($ViewName, $this->global,$data, NULL); + } + } + + function CreatePOPrint() + { + $PONO = $_GET['PONO']; + $ReqType = $_GET['ReqType']; + + if($ReqType == SERVICE) + { + $this ->servicepoprint($PONO); + + } + else if($ReqType == REVENUE) + { + $this ->revenuepoprint($PONO); + + } + } + //To View/Update Purchase Order + function EditPurchaseOrder() + { + $PONO = $_GET['PONO']; + $ReqType = $_GET['ReqType']; + $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); + $Year = $dt->format('Y'); + $data['CostList'] = $this->purchaseorder_model->getCostCenterbyRequist('',$Year,$ReqType); + $Req = $this->purchaseorder_model->getRequistionNoFromPO($PONO); + $data['ReqList'] = $Req ; + $result = array(); + $ReqArray = array(); + foreach ($Req as $SID): + $ReqArray[] = $SID->ReqNo ; + $result[] = $this->purchaseorder_model->getRawPOMaterialList($SID->ReqNo); + endforeach; + $data['MaterialList'] = $result;//$this->purchaseorder_model->getRawMaterialList($ReqType,$ReqArray); + $data['Suplist'] = $this->purchaseorder_model->getSupplierName(); + $data['RequistionDetails'] = $this->purchaseorder_model->getRequistDetails($ReqArray); + $data['POMaster'] = $this->purchaseorder_model->GetServicePurchaseOrder($PONO); + $data['MaxPODate'] = $this->purchaseorder_model->getLastCreatedPODate(); + $data['TaxType'] = $this->purchaseorder_model->getConfigValue('C006'); + $data['FreightType'] = $this->purchaseorder_model->getConfigValue('C018'); + if($ReqType == SERVICE) + { + + $data['POItem'] = $this->purchaseorder_model->GetServicePurchaseOrderDetails($PONO); + $this->global['pageTitle'] = 'Siddharth : Edit Service Purchase order form'; + $this->loadViews("EditservicePurchaseorder", $this->global, $data, NULL); + } + else if($ReqType == REVENUE) + { + + $data['POItem'] = $this->purchaseorder_model->GetRevenuePurchaseOrderDetails($PONO); + $this->global['pageTitle'] = 'Siddharth : Edit Revenue Purchase order form'; + $this->loadViews("editRevenuepurchaseorder", $this->global, $data, NULL); + } + + } + + // To get the Material value based on the MaterialCode + function getDetailsforReq() + { + + + $SearchFilter= $this->input->post('id'); + // $reqDate= $this->input->post('ReqDate'); + $DeptCode = $SearchFilter[0]; + $MatType = $SearchFilter[1]; + $ReqNo = $SearchFilter[2]; + // $ReqDetai = $this->purchaseorder_model->getRequistDetails( $EmpID ); + + $CostList = $this->requistion_model->GetCostCenterByDept( $DeptCode); + + $HTML = ""; + $BudAmount = ""; + if(count($CostList) > 0) + { + for ($j = 0; $j < count($CostList); $j++) + { + $Code = $CostList[$j]['CostCenterCode']; + $Name = $CostList[$j]['CostCenterName']; + $HTML .=""; + } + } + $MaterialDetails = $this->purchaseorder_model->getRawMaterialListForPO($MatType,$ReqNo); + + $HTML1 = ""; + + if(count($MaterialDetails) > 0) + { + for ($j = 0; $j < count($MaterialDetails); $j++) + { + $Code = $MaterialDetails[$j]['MaterialCode']; + $Name = $MaterialDetails[$j]['MaterialName']; + $HTML1 .=""; + + } + + } + // print_r($HTML1); + + die(json_encode(array('MatDetail' =>$HTML1,'Cost'=> $HTML))); + } + /* This method to get the status based on the Department selection in th + */ + function getStatusByDepartment() + { + $DepId = $this->input->post('id'); + + $data = $this->purchaseorder_model->getStatusByDepartment($DepId); + + $HTML = ""; + if(count($data) > 0) + { + for ($j = 0; $j < count($data); $j++) + { + $Code = $data[$j]['StatusCode']; + $Name = $data[$j]['StatusName']; + $HTML .=""; + } + } + //echo $HTML; + die(json_encode(array('depStaus' => $HTML))); + } + + // To get the available Budget Amount + function AvilBudgetAmount() + { + $SearchFilter= $this->input->post('id'); + // $reqDate= $this->input->post('ReqDate'); + $CostCode = $SearchFilter[0]; + $ReqType = $SearchFilter[1]; + print_r($SearchFilter); + $CostCode= $this->input->post('id'); + $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); + + $Year = $dt->format('Y'); + $this->load->model('purchaseorder_model'); + $result = $this->purchaseorder_model->GetAvailableBudgetAmount($CostCode,$Year,$ReqType); + //print_r($result); + $AvilBudAmt = ''; + if(count($result)>0) + { + $AvilBudAmt = $result[0]['BudgetAmount'] - $result[0]['Totalvalue']; + } + + // echo 'Test'; + print_r($AvilBudAmt); + //die(json_encode(array('Cost' => $AvilBudAmt))); + } + + + function getDateformat($Val) + { + $date = new DateTime($Val,new DateTimeZone('Asia/Kolkata')); + // print_r($date); + $retDate = $date->format('Y-m-d H:i:s'); + return $retDate; + } + /* Method to get the Requistion list based on the search filter*/ + + function SearchListofRequistion() + { + $SearchFilter= $this->input->post('id'); + // $reqDate= $this->input->post('ReqDate'); + $DEPCode = $SearchFilter[0]; + $Status = $SearchFilter[1]; + $rng = $SearchFilter[2];; + // $ToDate = $SearchFilter[3]; + $FromDate =''; + $ToDate = ''; + // echo $rng; + $Dt = explode("-",$rng); + // print_r( $Dt); + if(count( $Dt)>1) + { + $FDate = $Dt[0]; + $TDate = $Dt[1]; + $FromDate = $this->getDateformat($FDate); + $ToDate = $this->getDateformat($TDate); + } + //echo $FromDate; + // print_r($Dt); + $result = $this->purchaseorder_model->getRequistionListbySearch($DEPCode,$Status,$FromDate,$ToDate); + + + $HTML=""; + for ($i = 0; $i < count($result); $i++) + { + $SNo = $i + 1; + $ReqNo = $result[$i]['ReqNo']; + $ReqType = $result[$i]['ReqType']; + $Reqedby = $result[$i]['FirstName']; + $ReqDate = $result[$i]['ReqDate']; + $Status = $result[$i]['StatusName']; + $Department = $result[$i]['DepartmentName']; + $Designation = $result[$i]['Designation']; + + $HTML.=" + + ". $ReqNo." + + ".$ReqType." + + ".$Reqedby." + ".$ReqDate." + ".$Status." + ".$Department." + ".$Designation." + "; + } + //print_r( $HTML); + die(json_encode(array('ReqList' =>$HTML))); + } + + + /* To View the request details*/ + function ListPORequistion() + { + $ReqNo= $this->input->post('id'); + $result = $this->requistion_model->getRequistItemList($ReqNo); + $ReqList = $this->requistion_model->getRequistDetails($ReqNo); + $DepNo = $ReqList[0]['DEPCode']; + $CostList = $this->requistion_model->GetCostCenterByDept($DepNo); + $HTML=""; + for ($i = 0; $i < count($result); $i++) + { + $SNo = $i + 1; + $MaterialCode = $result[$i]['MaterialCode']; + $MaterialName = $result[$i]['MaterialName']; + $UOM = $result[$i]['UOM']; + $Quantity = $result[$i]['Quantity']; + $HTML.=" + ".$SNo." + ". $MaterialCode." + + ".$MaterialName." + + ".$UOM." + ".$Quantity." + "; + + //$index = $index + 1; + + } + + $CostCenter = ""; + if(count($CostList) > 0) + { + for ($j = 0; $j < count($CostList); $j++) + { + $Code = $CostList[$j]['CostCenterCode']; + $Name = $CostList[$j]['CostCenterName']; + $CostCenter .=""; + } + } + //echo $HTML; + //echo $CostCenter; + die(json_encode(array('Items' =>$HTML,'Requist'=>$ReqList,'Cost'=>$CostCenter))); + } + + //This used to Create Revenue Purchase Order + function addNewPurchaseOrder() + { + $POdt =$this->input->post('PODate'); + $PODate = $this->getDateformat($POdt); + $SupplierID = $this->input->post('drpSupplier'); + $DeliveryAddr = $this->input->post('DeliveryAddr'); + $dt = $this->input->post('Deliverydt'); + $Deliverydt = $this->getDateformat($dt); + $POType = $this->input->post('POType'); + $PoRange = $this->input->post('txtPoRange'); + + $SpcialInstruction = $this->input->post('txtSpcialInstruction'); + $TotalOrderValueSummary = $this->input->post('txtTotalOrderValueSummary'); + $POStatus = $this->input->post('txtStatus'); + + $CreateBy = $this->session->userdata ( 'userId' ); + $RowCount = $this->input->post('txtRowCount'); + $DeletedRow = $this->input->post('txtDeletedRow'); + + $comma_separated = explode(':', $DeletedRow); + + $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); + $createddt = $dt->format('Y-m-d H:i:s'); + // PO Master + $POList = array('SupplierID'=>$SupplierID, 'TotalOrderValue'=>$TotalOrderValueSummary,'PODate'=>$PODate,'Status'=>$POStatus,'PORange'=>$PoRange,'ServiceDescription'=>$SpcialInstruction,'CreatedBy'=>$CreateBy,'DeliveryAddress'=>$DeliveryAddr,'DeliveryDate'=>$Deliverydt,'CreatedDate'=>$createddt ); + + $POMaster = $this->purchaseorder_model->addPOMaster($POList); + + $PONO = ''; + if(count($POMaster)>0) + { + $PONO = $POMaster[0]['PONO']; + } + //echo $PONO; + //echo $POType; + // PO Line Items + $LineItemStatus = REQITEM_NEW; + //echo ' test:'.REVENUE; + //echo $RowCount; + for ($i = 1; $i <= $RowCount; $i++) + { + + $MaterialCode = $this->input->post('materialCode'.$i); + $Quantity = $this->input->post('quantity'.$i); + $Reqnumber = $this->input->post('Reqnumber'.$i); + $itemRate = $this->input->post('itemRate'.$i); + + $DiscountType = $this->input->post('DisType'.$i); + $DiscountValue = $this->input->post('DisVal'.$i); + $AfterDiscount = $this->input->post('AfterDisVal'.$i); + $PackagingOption = $this->input->post('PackOption'.$i); + $PackagingType = $this->input->post('PackType'.$i); + $PackagingValue = $this->input->post('PackVal'.$i); + $AfterPackagingValue = $this->input->post('AfterPackVal'.$i); + $ExciseOption = $this->input->post('ExciseOption'.$i); + $ExciseValue = $this->input->post('ExciseVal'.$i); + $AfterExciseValue = $this->input->post('AfterExciseVal'.$i); + $VatOption = $this->input->post('VatOption'.$i); + $VatValue = $this->input->post('VatVal'.$i); + $AfterVatValue = $this->input->post('AfterVatVal'.$i); + $CSTOption = $this->input->post('CSTOption'.$i); + $CSTValue = $this->input->post('CSTVal'.$i); + $AfterCSTValue = $this->input->post('AfterCSTVal'.$i); + $GSTValue = $this->input->post('GSTVal'.$i); + $AfterGSTValue = $this->input->post('AfterGSTVal'.$i); + $OtherTaxValue = $this->input->post('OtherTaxVal'.$i); + $AfterOtherTaxValue = $this->input->post('AfterOtherTaxVal'.$i); + $FreightType = $this->input->post('FreightType'.$i); + $FreightValue = $this->input->post('FreightVal'.$i); + $AfterFreightValue = $this->input->post('AfterFreightVal'.$i); + $InsuranceValue = $this->input->post('Insval'.$i); + $TotalOrderValue = $this->input->post('TotalOrderValue'.$i); + $CostCenter = $this->input->post('costCode'.$i); + + $SkipInsert = "False"; + if( count($comma_separated) > 0) + { + for($j = 1; $j < count($comma_separated); $j++) + { + $deletedRow = $comma_separated[$j] ; + + if($deletedRow == $i ) + { + $SkipInsert = "True"; + break; + } + + } + } + if($SkipInsert == "False") + { + $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt,'CostCenterCode'=>$CostCenter); + + $POLineItem = $this->purchaseorder_model->addPOLineItem($POLineItemList); + + $LineItemNo = ''; + if(count($POLineItem)>0) + { + $LineItemNo = $POLineItem[0]['LineItemNo']; + } + //echo $LineItemNo; + + if(trim($POType) == REVENUE ) + { + // echo 'Success'; + $RevenueTaxList = array('LineItemNo'=>$LineItemNo, 'DiscountType'=>$DiscountType,'DiscountValue'=>$DiscountValue,'AfterDiscount'=>$AfterDiscount,'PackagingType'=>$PackagingType,'PackagingValue'=>$PackagingValue,'PackagingCalulatedOn'=>$PackagingOption,'AfterPackagingValue'=>$AfterPackagingValue,'FreightType'=>$FreightType, 'FreightValue'=>$FreightValue,'AfterFreightValue'=>$AfterFreightValue,'ExciseDuty'=>$ExciseValue,'ExciseDutyCalulatedOn'=>$ExciseOption,'AfterExciseDuty'=>$AfterExciseValue,'Vat'=>$VatValue,'AfterVAT'=>$AfterVatValue,'VatCalulatedOn'=>$VatOption, 'CST'=>$CSTValue,'AfterCST'=>$AfterCSTValue,'CSTCalulatedOn'=>$CSTOption,'GST'=>$GSTValue,'AfterGST'=>$AfterGSTValue,'OtherTaxes'=>$OtherTaxValue,'AfterOtherTaxes'=>$AfterOtherTaxValue,'Insurance'=>$InsuranceValue,'TotalValue'=>$TotalOrderValue, 'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt); + + $RevenueList = $this->purchaseorder_model->addRevenueTax($RevenueTaxList); + //echo 'Revenue tax Success'; + } + } + + } + echo 'Purchase Order Created Successfully! PO Number Is: '.$PONO ; + + } + //This used to Edit the Revenue Purchase Order + function EditRevenuePurchaseOrder() + { + $PONO =$this->input->post('txtPONO'); + $POdt =$this->input->post('PODate'); + $PODate = $this->getDateformat($POdt); + $SupplierID = $this->input->post('drpSupplier'); + $DeliveryAddr = $this->input->post('txtDeliveryAddress'); + $dt = $this->input->post('Deliverydt'); + $Deliverydt = $this->getDateformat($dt); + $POType = $this->input->post('POType'); + $PoRange = $this->input->post('txtPoRange'); + + $SpcialInstruction = $this->input->post('SpcialInstruction'); + $TotalOrderValueSummary = $this->input->post('txtTotalOrderValueSummary'); + $POStatus = $this->input->post('txtStatus'); + + $updatedBy = $this->session->userdata ( 'userId' ); + $RowCount = $this->input->post('txtRowCount'); + $DeletedRow = $this->input->post('txtDeletedRow'); + + $comma_separated = explode(':', $DeletedRow); + $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); + $updateddt = $dt->format('Y-m-d H:i:s'); + // PO Master + // PO Master + $POList = array('SupplierID'=>$SupplierID, 'TotalOrderValue'=>$TotalOrderValueSummary,'PODate'=>$PODate,'Status'=>$POStatus,'ServiceDescription'=>$SpcialInstruction,'UpdateBY'=>$updatedBy,'DeliveryAddress'=>$DeliveryAddr,'DeliveryDate'=>$Deliverydt,'UpdatedOn'=>$updateddt ); + + $POMaster = $this->purchaseorder_model->updatePOMaster($PONO,$POList); + + $LineItemStatus = REQITEM_NEW; + + + + //echo $RowCount; + for ($i = 1; $i <= $RowCount; $i++) + { + + $MaterialCode = $this->input->post('materialCode'.$i); + $Quantity = $this->input->post('quantity'.$i); + $Reqnumber = $this->input->post('Reqnumber'.$i); + $itemRate = $this->input->post('itemRate'.$i); + + $DiscountType = $this->input->post('DisType'.$i); + $DiscountValue = $this->input->post('DisVal'.$i); + $AfterDiscount = $this->input->post('AfterDisVal'.$i); + $PackagingOption = $this->input->post('PackOption'.$i); + $PackagingType = $this->input->post('PackType'.$i); + $PackagingValue = $this->input->post('PackVal'.$i); + $AfterPackagingValue = $this->input->post('AfterPackVal'.$i); + $ExciseOption = $this->input->post('ExciseOption'.$i); + $ExciseValue = $this->input->post('ExciseVal'.$i); + $AfterExciseValue = $this->input->post('AfterExciseVal'.$i); + $VatOption = $this->input->post('VatOption'.$i); + $VatValue = $this->input->post('VatVal'.$i); + $AfterVatValue = $this->input->post('AfterVatVal'.$i); + $CSTOption = $this->input->post('CSTOption'.$i); + $CSTValue = $this->input->post('CSTVal'.$i); + $AfterCSTValue = $this->input->post('AfterCSTVal'.$i); + $GSTValue = $this->input->post('GSTVal'.$i); + $AfterGSTValue = $this->input->post('AfterGSTVal'.$i); + $OtherTaxValue = $this->input->post('OtherTaxVal'.$i); + $AfterOtherTaxValue = $this->input->post('AfterOtherTaxVal'.$i); + $FreightType = $this->input->post('FreightType'.$i); + $FreightValue = $this->input->post('FreightVal'.$i); + $AfterFreightValue = $this->input->post('AfterFreightVal'.$i); + $InsuranceValue = $this->input->post('Insval'.$i); + $TotalOrderValue = $this->input->post('TotalOrderValue'.$i); + $POLineItemNo = $this->input->post('LineItemNo'.$i); + $CostCenter = $this->input->post('costCode'.$i); + $LineItemNo = ''; + + + $SkipInsert = "False"; + if( count($comma_separated) > 0) + { + for($j = 1; $j < count($comma_separated); $j++) + { + $deletedRow = $comma_separated[$j] ; + + if($deletedRow == $i ) + { + $SkipInsert = "True"; + break; + } + + } + } + if($SkipInsert == "False") + { + if(strlen($POLineItemNo) == 0) + { + $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'CreatedBy'=>$updatedBy,'CreatedDate'=>$updateddt,'CostCenterCode'=>$CostCenter); + $POLineItem = $this->purchaseorder_model->addPOLineItem($POLineItemList); + if(count($POLineItem)>0) + { + $LineItemNo = $POLineItem[0]['LineItemNo']; + } + + } + else + { + $LineItemNo = $POLineItemNo; + + $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'UpdateBY'=>$updatedBy,'UpdatedOn'=>$updateddt,'CostCenterCode'=>$CostCenter); + $POLineItem = $this->purchaseorder_model->updatePOLineItem($PONO,$POLineItemNo,$POLineItemList); + + } + $isExists = $this->purchaseorder_model->LineItemExistsinRevenueTax($LineItemNo); + if(count($isExists) == 0) + { + $RevenueTaxList = array('LineItemNo'=>$LineItemNo, 'DiscountType'=>$DiscountType,'DiscountValue'=>$DiscountValue,'AfterDiscount'=>$AfterDiscount,'PackagingType'=>$PackagingType,'PackagingValue'=>$PackagingValue,'PackagingCalulatedOn'=>$PackagingOption,'AfterPackagingValue'=>$AfterPackagingValue,'FreightType'=>$FreightType, 'FreightValue'=>$FreightValue,'AfterFreightValue'=>$AfterFreightValue,'ExciseDuty'=>$ExciseValue,'ExciseDutyCalulatedOn'=>$ExciseOption,'AfterExciseDuty'=>$AfterExciseValue,'Vat'=>$VatValue,'AfterVAT'=>$AfterVatValue,'VatCalulatedOn'=>$VatOption, 'CST'=>$CSTValue,'AfterCST'=>$AfterCSTValue,'CSTCalulatedOn'=>$CSTOption,'GST'=>$GSTValue,'AfterGST'=>$AfterGSTValue,'OtherTaxes'=>$OtherTaxValue,'AfterOtherTaxes'=>$AfterOtherTaxValue,'Insurance'=>$InsuranceValue,'TotalValue'=>$TotalOrderValue, 'CreatedBy'=>$updatedBy,'CreatedDate'=>$updateddt); + + $RevenueList = $this->purchaseorder_model->addRevenueTax($RevenueTaxList); + + } + else + { + $RevenueTaxList = array('DiscountType'=>$DiscountType,'DiscountValue'=>$DiscountValue,'AfterDiscount'=>$AfterDiscount,'PackagingType'=>$PackagingType,'PackagingValue'=>$PackagingValue,'PackagingCalulatedOn'=>$PackagingOption,'AfterPackagingValue'=>$AfterPackagingValue,'FreightType'=>$FreightType, 'FreightValue'=>$FreightValue,'AfterFreightValue'=>$AfterFreightValue,'ExciseDuty'=>$ExciseValue,'ExciseDutyCalulatedOn'=>$ExciseOption,'AfterExciseDuty'=>$AfterExciseValue,'Vat'=>$VatValue,'AfterVAT'=>$AfterVatValue,'VatCalulatedOn'=>$VatOption, 'CST'=>$CSTValue,'AfterCST'=>$AfterCSTValue,'CSTCalulatedOn'=>$CSTOption,'GST'=>$GSTValue,'AfterGST'=>$AfterGSTValue,'OtherTaxes'=>$OtherTaxValue,'AfterOtherTaxes'=>$AfterOtherTaxValue,'Insurance'=>$InsuranceValue,'TotalValue'=>$TotalOrderValue, 'UpdateBY'=>$updatedBy,'UpdatedOn'=>$updateddt); + + $this->purchaseorder_model->updateRevenueTax($LineItemNo,$RevenueTaxList); + + } + } + + } + + echo 'Purchase Order Updated Successfully! PO Number Is: '.$PONO ; + } + function pageNotFound() + { + $this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found'; + + $this->loadViews("404", $this->global, NULL, NULL); + } + + public function revenuepoprint($PONO) + { + // Load all views as normal + + + //$PONO = $_GET['PO']; + + $data['CompanyDetails'] = $this->purchaseorder_model->getCompanyInformation(); + $data['POItem'] = $this->purchaseorder_model->GetRevenuePurchaseOrderDetailsForPDF($PONO); + + + // Add header to pdf + //$this->load->view('includes/pdfheader'); + + // Load the pdf page with multiviews + $this->load->View("revenuepopdf", $data); + + // Add header to pdf + //$this->load->view('includes/pdffooter'); + + // Get output html + $php = $this->output->get_output(); + + // Load library + $this->load->library('dompdf_gen'); + + // Convert to PDF + $this->dompdf->load_html($php); + $this->dompdf->render(); + $data['Attachment'] = FALSE; + $this->dompdf->stream("RevenuePOReport.pdf",$data,$php); + +} + public function servicepoprint($PONO) + { + + // $this->load->view('includes/pdfheader'); + + // Load the pdf page with multiviews + $data['CompanyDetails'] = $this->purchaseorder_model->getCompanyInformation(); + $data['POItem'] = $this->purchaseorder_model->GetServicePurchaseOrderDetailsForPrint($PONO); + + $this->load->View("servicepopdf", $data); + + // Add header to pdf + //$this->load->view('includes/pdffooter'); + + // Get output html + $php = $this->output->get_output(); + + // Load library + $this->load->library('dompdf_gen'); + + // Convert to PDF + $this->dompdf->load_html($php); + $this->dompdf->render(); + $data['Attachment'] = FALSE; + $this->dompdf->stream("ServicePOReport.pdf",$data,$php); + +} +/** + * This function used to load the Delete the Requistion Items + */ + function DeletePODetails() + { + + $ReqList= $this->input->post('id'); + $LineItemNo = ''; + $ReqNo =''; + $MaterialCode = ''; + $POType = ''; + if(count($ReqList) > 0) + { + $LineItemNo = $ReqList[0]; + $ReqNo = $ReqList[1]; + $MaterialCode = $ReqList[2]; + $POType = $ReqList[3]; + } + // print_r($ReqList); + + + If($POType == REVENUE) + { + $this->purchaseorder_model->DeletePORevenueTax($LineItemNo); + } + else If($POType == SERVICE) + { + $this->purchaseorder_model->DeletePOServiceTax($LineItemNo); + } + $this->purchaseorder_model->DeletePOLineItem($LineItemNo , $ReqNo,$MaterialCode); + echo "Successfully Deleted the Line item".$LineItemNo; + + } +} + +?> \ No newline at end of file diff --git a/application/controllers/login.php b/application/controllers/login.php index 25066bee..3f4e9766 100644 --- a/application/controllers/login.php +++ b/application/controllers/login.php @@ -80,19 +80,20 @@ class Login extends CI_Controller 'DepartmentName'=>$res->DepartmentName, 'isLoggedIn' => TRUE ); - // print_r( $sessionArray); + $this->session->set_userdata($sessionArray); - redirect('/dashboard'); + } + redirect('dashboard'); } else { - redirect('/login'); - $this->session->set_flashdata('error', 'Email or password mismatch'); + redirect('login'); + $this->session->set_flashdata('error', 'Email or password mismatch'); } } } diff --git a/application/controllers/purchaseorder.php b/application/controllers/purchaseorder.php index aab74518..25a2c902 100644 --- a/application/controllers/purchaseorder.php +++ b/application/controllers/purchaseorder.php @@ -19,8 +19,8 @@ class purchaseorder extends BaseController parent::__construct(); $this->load->model('purchaseorder_model'); - $this->load->library('session'); - $this->load->library('form_validation'); + $this->load->library('session'); + $this->load->library('form_validation'); $this->load->model('requistion_model'); $this->isLoggedIn(); } @@ -30,9 +30,7 @@ class purchaseorder extends BaseController */ public function index() { - $this->global['pageTitle'] = 'Siddharth : AddPO'; - - + $this->global['pageTitle'] = 'Siddharth : AddPO'; $this->loadViews("addPO", $this->global, NULL , NULL); } @@ -50,13 +48,29 @@ class purchaseorder extends BaseController $this->loadViews("createPOfromRequistion", $this->global, $data,Null); } + /*function CreateEmergencyPO() + { + + $this->global['pageTitle'] = 'Siddharth : Create Emergency Purchase Order'; + + $data['RequestType'] = $this->requistion_model->getConfigValue('C004'); + + $data['Suplist'] = $this->purchaseorder_model->getSupplierName(); + + $data['DeptList'] = $this->purchaseorder_model->getDepartmentListForAllReq(); + + $data['CompanyDetails'] = $this->purchaseorder_model->getCompanyInformation(); + + $data['MaxPODate'] = $this->purchaseorder_model->getLastCreatedPODate(); + + $this->loadViews("alterpurchaseorder", $this->global, $data,Null); + + } */ /** * This function is used to load the purchaseorder list */ function PurchaseOrderList() { - - $this->load->library('pagination'); @@ -64,44 +78,79 @@ class purchaseorder extends BaseController $returns = $this->paginationCompress ( "purchaseorderListing/", $count, 5 ); - - $data['POData'] = $this->purchaseorder_model->purchaseorderListing(); - + //$this->purchaseorder_model->UpdateRequistItemStatus(); + $this->purchaseorder_model->UpdateRequistionStatus(); + $data['POData'] = $this->purchaseorder_model->purchaseorderListing(); $this->global['pageTitle'] = 'Siddharth : Purchase Orders'; $this->loadViews("POlist", $this->global, $data, NULL); } + function Req_validate($selectValue) +{ + //echo 'select_validate method called'; + // 'none' is the first option and the text says something like "-Choose one-" + if(strlen($selectValue) == 0) + { + $this->form_validation->set_message('Req_validate', 'Please Select Requisition Number to Create PO.'); + return false; + } + else // user picked something + { + return true; + } +} + /** * This function used to show the Purchase Order Screen */ function CreatePurchaseOrder() { - - - $this->global['pageTitle'] = 'Siddharth : Purchase order form'; + + $this->load->library('form_validation'); + + $this->form_validation->set_rules('txtReqNo', 'txtReqNo', 'callback_Req_validate'); + + if($this->form_validation->run() == FALSE) + { + $this->requisition(); + //echo 'Validate method called'; + } + else + { + + $this->global['pageTitle'] = 'Siddharth : Purchase order form'; $data['TaxType'] = $this->purchaseorder_model->getConfigValue('C006'); - $data['FreightType'] = $this->purchaseorder_model->getConfigValue('C018'); + $data['FreightType'] = $this->purchaseorder_model->getConfigValue('C018'); $data['Suplist'] = $this->purchaseorder_model->getSupplierName(); $SelectedReq = json_decode($this->input->post('txtReqNo')); + $Req = $SelectedReq->Req; $data['ReqList'] = $Req ; $ReqArray = array(); $ReqType = ''; + $result = array(); foreach ($Req as $SID): - $ReqArray[] = $SID->ReqNo ; - $ReqType = $SID->ReqType; - endforeach; + $ReqArray[] = $SID->ReqNo ; + $result[] = $this->purchaseorder_model->getRawPOMaterialList($SID->ReqNo); + $ReqType = $SID->ReqType; + // echo $SID->ReqNo; + endforeach; + //print_r ($result); $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); $Year = $dt->format('Y'); $data['CostList'] = $this->purchaseorder_model->getCostCenterbyRequist('',$Year,$ReqType); - $data['MaterialList'] = $this->purchaseorder_model->getRawMaterialList($ReqType,$ReqArray); + $data['MaterialList'] = $result; //$this->purchaseorder_model->getRawMaterialList($ReqType,$ReqArray); + //print_r ($data['MaterialList']); $data['RequistionDetails'] = $this->purchaseorder_model->getRequistDetails($ReqArray); + $data['CompanyDetails'] = $this->purchaseorder_model->getCompanyInformation(); + $data['MaxPODate'] = $this->purchaseorder_model->getLastCreatedPODate(); + $ViewName = ''; if($ReqType == REVENUE) { @@ -110,16 +159,27 @@ class purchaseorder extends BaseController else if($ReqType == SERVICE) { $ViewName = 'servicePurchaseorder'; - } - else //if($ReqType == IMPORT) - { - $ViewName = 'importpo'; - } - $this->loadViews($ViewName, $this->global,$data, NULL); - + } + $this->loadViews($ViewName, $this->global,$data, NULL); + } } - + function CreatePOPrint() + { + $PONO = $_GET['PONO']; + $ReqType = $_GET['ReqType']; + + if($ReqType == SERVICE) + { + $this ->servicepoprint($PONO); + + } + else if($ReqType == REVENUE) + { + $this ->revenuepoprint($PONO); + + } + } //To View/Update Purchase Order function EditPurchaseOrder() { @@ -130,22 +190,33 @@ class purchaseorder extends BaseController $data['CostList'] = $this->purchaseorder_model->getCostCenterbyRequist('',$Year,$ReqType); $Req = $this->purchaseorder_model->getRequistionNoFromPO($PONO); $data['ReqList'] = $Req ; + $result = array(); $ReqArray = array(); foreach ($Req as $SID): - $ReqArray[] = $SID->ReqNo ; + $ReqArray[] = $SID->ReqNo ; + $result[] = $this->purchaseorder_model->getRawPOMaterialList($SID->ReqNo); endforeach; - $data['MaterialList'] = $this->purchaseorder_model->getRawMaterialList($ReqType,$ReqArray); - + $data['MaterialList'] = $result;//$this->purchaseorder_model->getRawMaterialList($ReqType,$ReqArray); + $data['Suplist'] = $this->purchaseorder_model->getSupplierName(); $data['RequistionDetails'] = $this->purchaseorder_model->getRequistDetails($ReqArray); + $data['POMaster'] = $this->purchaseorder_model->GetServicePurchaseOrder($PONO); + $data['MaxPODate'] = $this->purchaseorder_model->getLastCreatedPODate(); + $data['TaxType'] = $this->purchaseorder_model->getConfigValue('C006'); + $data['FreightType'] = $this->purchaseorder_model->getConfigValue('C018'); if($ReqType == SERVICE) - { - - $data['Suplist'] = $this->purchaseorder_model->getSupplierName(); - $data['POMaster'] = $this->purchaseorder_model->GetServicePurchaseOrder($PONO); + { + $data['POItem'] = $this->purchaseorder_model->GetServicePurchaseOrderDetails($PONO); $this->global['pageTitle'] = 'Siddharth : Edit Service Purchase order form'; $this->loadViews("EditservicePurchaseorder", $this->global, $data, NULL); - } + } + else if($ReqType == REVENUE) + { + + $data['POItem'] = $this->purchaseorder_model->GetRevenuePurchaseOrderDetails($PONO); + $this->global['pageTitle'] = 'Siddharth : Edit Revenue Purchase order form'; + $this->loadViews("editRevenuepurchaseorder", $this->global, $data, NULL); + } } @@ -307,7 +378,7 @@ class purchaseorder extends BaseController /* To View the request details*/ - function ViewRequest() + function ListPORequistion() { $ReqNo= $this->input->post('id'); $result = $this->requistion_model->getRequistItemList($ReqNo); @@ -350,6 +421,7 @@ class purchaseorder extends BaseController //echo $CostCenter; die(json_encode(array('Items' =>$HTML,'Requist'=>$ReqList,'Cost'=>$CostCenter))); } + //This used to Create Revenue Purchase Order function addNewPurchaseOrder() { @@ -368,6 +440,10 @@ class purchaseorder extends BaseController $CreateBy = $this->session->userdata ( 'userId' ); $RowCount = $this->input->post('txtRowCount'); + $DeletedRow = $this->input->post('txtDeletedRow'); + + $comma_separated = explode(':', $DeletedRow); + $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); $createddt = $dt->format('Y-m-d H:i:s'); // PO Master @@ -384,7 +460,7 @@ class purchaseorder extends BaseController //echo $POType; // PO Line Items $LineItemStatus = REQITEM_NEW; - echo ' test:'.REVENUE; + //echo ' test:'.REVENUE; //echo $RowCount; for ($i = 1; $i <= $RowCount; $i++) { @@ -419,67 +495,84 @@ class purchaseorder extends BaseController $AfterFreightValue = $this->input->post('AfterFreightVal'.$i); $InsuranceValue = $this->input->post('Insval'.$i); $TotalOrderValue = $this->input->post('TotalOrderValue'.$i); + $CostCenter = $this->input->post('costCode'.$i); - - $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt); - - $POLineItem = $this->purchaseorder_model->addPOLineItem($POLineItemList); - - $LineItemNo = ''; - if(count($POLineItem)>0) + $SkipInsert = "False"; + if( count($comma_separated) > 0) { - $LineItemNo = $POLineItem[0]['LineItemNo']; + for($j = 1; $j < count($comma_separated); $j++) + { + $deletedRow = $comma_separated[$j] ; + + if($deletedRow == $i ) + { + $SkipInsert = "True"; + break; + } + + } + } + if($SkipInsert == "False") + { + $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt,'CostCenterCode'=>$CostCenter); + + $POLineItem = $this->purchaseorder_model->addPOLineItem($POLineItemList); + + $LineItemNo = ''; + if(count($POLineItem)>0) + { + $LineItemNo = $POLineItem[0]['LineItemNo']; + } + //echo $LineItemNo; + + if(trim($POType) == REVENUE ) + { + // echo 'Success'; + $RevenueTaxList = array('LineItemNo'=>$LineItemNo, 'DiscountType'=>$DiscountType,'DiscountValue'=>$DiscountValue,'AfterDiscount'=>$AfterDiscount,'PackagingType'=>$PackagingType,'PackagingValue'=>$PackagingValue,'PackagingCalulatedOn'=>$PackagingOption,'AfterPackagingValue'=>$AfterPackagingValue,'FreightType'=>$FreightType, 'FreightValue'=>$FreightValue,'AfterFreightValue'=>$AfterFreightValue,'ExciseDuty'=>$ExciseValue,'ExciseDutyCalulatedOn'=>$ExciseOption,'AfterExciseDuty'=>$AfterExciseValue,'Vat'=>$VatValue,'AfterVAT'=>$AfterVatValue,'VatCalulatedOn'=>$VatOption, 'CST'=>$CSTValue,'AfterCST'=>$AfterCSTValue,'CSTCalulatedOn'=>$CSTOption,'GST'=>$GSTValue,'AfterGST'=>$AfterGSTValue,'OtherTaxes'=>$OtherTaxValue,'AfterOtherTaxes'=>$AfterOtherTaxValue,'Insurance'=>$InsuranceValue,'TotalValue'=>$TotalOrderValue, 'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt); + + $RevenueList = $this->purchaseorder_model->addRevenueTax($RevenueTaxList); + //echo 'Revenue tax Success'; + } } - //echo $LineItemNo; - if(trim($POType) == REVENUE ) - { - echo 'Success'; - $RevenueTaxList = array('LineItemNo'=>$LineItemNo, 'DiscountType'=>$DiscountType,'DiscountValue'=>$DiscountValue,'AfterDiscount'=>$AfterDiscount,'PackagingType'=>$PackagingType,'PackagingValue'=>$PackagingValue,'PackagingCalulatedOn'=>$PackagingOption,'AfterPackagingValue'=>$AfterPackagingValue,'FreightType'=>$FreightType, 'FreightValue'=>$FreightValue,'AfterFreightValue'=>$AfterFreightValue,'ExciseDuty'=>$ExciseValue,'ExciseDutyCalulatedOn'=>$ExciseOption,'AfterExciseDuty'=>$AfterExciseValue,'Vat'=>$VatValue,'AfterVAT'=>$AfterVatValue,'VatCalulatedOn'=>$VatOption, 'CST'=>$CSTValue,'AfterCST'=>$AfterCSTValue,'CSTCalulatedOn'=>$CSTOption,'GST'=>$GSTValue,'AfterGST'=>$AfterGSTValue,'OtherTaxes'=>$OtherTaxValue,'AfterOtherTaxes'=>$AfterOtherTaxValue,'Insurance'=>$InsuranceValue,'TotalValue'=>$TotalOrderValue, 'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt); - - $RevenueList = $this->purchaseorder_model->addRevenueTax($RevenueTaxList); - echo 'Revenue tax Success'; - } - echo 'Successfully updated the Record'; } - + echo 'Purchase Order Created Successfully! PO Number Is: '.$PONO ; } - //This used to Create Service Purchase Order - function addNewServicePurchaseOrder() + //This used to Edit the Revenue Purchase Order + function EditRevenuePurchaseOrder() { + $PONO =$this->input->post('txtPONO'); $POdt =$this->input->post('PODate'); $PODate = $this->getDateformat($POdt); $SupplierID = $this->input->post('drpSupplier'); - $DeliveryAddr = $this->input->post('DeliveryAddr'); + $DeliveryAddr = $this->input->post('txtDeliveryAddress'); $dt = $this->input->post('Deliverydt'); $Deliverydt = $this->getDateformat($dt); $POType = $this->input->post('POType'); - - $SpcialInstruction = $this->input->post('txtSpcialInstruction'); + $PoRange = $this->input->post('txtPoRange'); + + $SpcialInstruction = $this->input->post('SpcialInstruction'); $TotalOrderValueSummary = $this->input->post('txtTotalOrderValueSummary'); $POStatus = $this->input->post('txtStatus'); - $CreateBy = $this->session->userdata ( 'userId' ); - $RowCount = $this->input->post('txtRowCount'); + $updatedBy = $this->session->userdata ( 'userId' ); + $RowCount = $this->input->post('txtRowCount'); + $DeletedRow = $this->input->post('txtDeletedRow'); + $comma_separated = explode(':', $DeletedRow); $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); - $createddt = $dt->format('Y-m-d H:i:s'); + $updateddt = $dt->format('Y-m-d H:i:s'); // PO Master - $POList = array('SupplierID'=>$SupplierID, 'TotalOrderValue'=>$TotalOrderValueSummary,'PODate'=>$PODate,'Status'=>$POStatus,'ServiceDescription'=>$SpcialInstruction,'CreatedBy'=>$CreateBy,'DeliveryAddress'=>$DeliveryAddr,'DeliveryDate'=>$Deliverydt,'CreatedDate'=>$createddt ); + // PO Master + $POList = array('SupplierID'=>$SupplierID, 'TotalOrderValue'=>$TotalOrderValueSummary,'PODate'=>$PODate,'Status'=>$POStatus,'ServiceDescription'=>$SpcialInstruction,'UpdateBY'=>$updatedBy,'DeliveryAddress'=>$DeliveryAddr,'DeliveryDate'=>$Deliverydt,'UpdatedOn'=>$updateddt ); - $POMaster = $this->purchaseorder_model->addPOMaster($POList); - - $PONO = ''; - if(count($POMaster)>0) - { - $PONO = $POMaster[0]['PONO']; - } - //echo $PONO; - //echo $POType; - // PO Line Items + $POMaster = $this->purchaseorder_model->updatePOMaster($PONO,$POList); + $LineItemStatus = REQITEM_NEW; - //echo ' test:'.REVENUE; + + + //echo $RowCount; for ($i = 1; $i <= $RowCount; $i++) { @@ -488,151 +581,119 @@ class purchaseorder extends BaseController $Quantity = $this->input->post('quantity'.$i); $Reqnumber = $this->input->post('Reqnumber'.$i); $itemRate = $this->input->post('itemRate'.$i); - $ServiceTax = $this->input->post('ServiceTax'.$i); - $EduCess = $this->input->post('EduCess'.$i); - $SecHighTax = $this->input->post('SecHighTax'.$i); - $KrishiTax = $this->input->post('KrishiTax'.$i); - $SwachhTax = $this->input->post('SwachhTax'.$i); - $CostCenter = $this->input->post('costCode'.$i); - + + $DiscountType = $this->input->post('DisType'.$i); + $DiscountValue = $this->input->post('DisVal'.$i); + $AfterDiscount = $this->input->post('AfterDisVal'.$i); + $PackagingOption = $this->input->post('PackOption'.$i); + $PackagingType = $this->input->post('PackType'.$i); + $PackagingValue = $this->input->post('PackVal'.$i); + $AfterPackagingValue = $this->input->post('AfterPackVal'.$i); + $ExciseOption = $this->input->post('ExciseOption'.$i); + $ExciseValue = $this->input->post('ExciseVal'.$i); + $AfterExciseValue = $this->input->post('AfterExciseVal'.$i); + $VatOption = $this->input->post('VatOption'.$i); + $VatValue = $this->input->post('VatVal'.$i); + $AfterVatValue = $this->input->post('AfterVatVal'.$i); + $CSTOption = $this->input->post('CSTOption'.$i); + $CSTValue = $this->input->post('CSTVal'.$i); + $AfterCSTValue = $this->input->post('AfterCSTVal'.$i); + $GSTValue = $this->input->post('GSTVal'.$i); + $AfterGSTValue = $this->input->post('AfterGSTVal'.$i); + $OtherTaxValue = $this->input->post('OtherTaxVal'.$i); + $AfterOtherTaxValue = $this->input->post('AfterOtherTaxVal'.$i); + $FreightType = $this->input->post('FreightType'.$i); + $FreightValue = $this->input->post('FreightVal'.$i); + $AfterFreightValue = $this->input->post('AfterFreightVal'.$i); + $InsuranceValue = $this->input->post('Insval'.$i); $TotalOrderValue = $this->input->post('TotalOrderValue'.$i); - - - $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt,'CostCenterCode'=>$CostCenter); - - $POLineItem = $this->purchaseorder_model->addPOLineItem($POLineItemList); - + $POLineItemNo = $this->input->post('LineItemNo'.$i); + $CostCenter = $this->input->post('costCode'.$i); $LineItemNo = ''; - if(count($POLineItem)>0) - { - $LineItemNo = $POLineItem[0]['LineItemNo']; - } - //echo $LineItemNo; - if(trim($POType) == SERVICE ) + $SkipInsert = "False"; + if( count($comma_separated) > 0) + { + for($j = 1; $j < count($comma_separated); $j++) + { + $deletedRow = $comma_separated[$j] ; + + if($deletedRow == $i ) + { + $SkipInsert = "True"; + break; + } + + } + } + if($SkipInsert == "False") + { + if(strlen($POLineItemNo) == 0) { - // echo 'Success'; - $ServiceTaxList = array('LineItemNo'=>$LineItemNo, 'ServiceTax'=>$ServiceTax,'EducessTax'=>$EduCess,'SecHigherEducessTax'=>$SecHighTax,'KrishiKalyantax'=>$KrishiTax,'SwachhBharattax'=>$SwachhTax,'TotalValue'=>$TotalOrderValue, 'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt); - - $ServiceTax = $this->purchaseorder_model->addServiceTax($ServiceTaxList); - echo 'Service tax Success'; + $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'CreatedBy'=>$updatedBy,'CreatedDate'=>$updateddt,'CostCenterCode'=>$CostCenter); + $POLineItem = $this->purchaseorder_model->addPOLineItem($POLineItemList); + if(count($POLineItem)>0) + { + $LineItemNo = $POLineItem[0]['LineItemNo']; + } + } - echo 'Successfully Created the Record'; + else + { + $LineItemNo = $POLineItemNo; + + $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'UpdateBY'=>$updatedBy,'UpdatedOn'=>$updateddt,'CostCenterCode'=>$CostCenter); + $POLineItem = $this->purchaseorder_model->updatePOLineItem($PONO,$POLineItemNo,$POLineItemList); + + } + $isExists = $this->purchaseorder_model->LineItemExistsinRevenueTax($LineItemNo); + if(count($isExists) == 0) + { + $RevenueTaxList = array('LineItemNo'=>$LineItemNo, 'DiscountType'=>$DiscountType,'DiscountValue'=>$DiscountValue,'AfterDiscount'=>$AfterDiscount,'PackagingType'=>$PackagingType,'PackagingValue'=>$PackagingValue,'PackagingCalulatedOn'=>$PackagingOption,'AfterPackagingValue'=>$AfterPackagingValue,'FreightType'=>$FreightType, 'FreightValue'=>$FreightValue,'AfterFreightValue'=>$AfterFreightValue,'ExciseDuty'=>$ExciseValue,'ExciseDutyCalulatedOn'=>$ExciseOption,'AfterExciseDuty'=>$AfterExciseValue,'Vat'=>$VatValue,'AfterVAT'=>$AfterVatValue,'VatCalulatedOn'=>$VatOption, 'CST'=>$CSTValue,'AfterCST'=>$AfterCSTValue,'CSTCalulatedOn'=>$CSTOption,'GST'=>$GSTValue,'AfterGST'=>$AfterGSTValue,'OtherTaxes'=>$OtherTaxValue,'AfterOtherTaxes'=>$AfterOtherTaxValue,'Insurance'=>$InsuranceValue,'TotalValue'=>$TotalOrderValue, 'CreatedBy'=>$updatedBy,'CreatedDate'=>$updateddt); + + $RevenueList = $this->purchaseorder_model->addRevenueTax($RevenueTaxList); + + } + else + { + $RevenueTaxList = array('DiscountType'=>$DiscountType,'DiscountValue'=>$DiscountValue,'AfterDiscount'=>$AfterDiscount,'PackagingType'=>$PackagingType,'PackagingValue'=>$PackagingValue,'PackagingCalulatedOn'=>$PackagingOption,'AfterPackagingValue'=>$AfterPackagingValue,'FreightType'=>$FreightType, 'FreightValue'=>$FreightValue,'AfterFreightValue'=>$AfterFreightValue,'ExciseDuty'=>$ExciseValue,'ExciseDutyCalulatedOn'=>$ExciseOption,'AfterExciseDuty'=>$AfterExciseValue,'Vat'=>$VatValue,'AfterVAT'=>$AfterVatValue,'VatCalulatedOn'=>$VatOption, 'CST'=>$CSTValue,'AfterCST'=>$AfterCSTValue,'CSTCalulatedOn'=>$CSTOption,'GST'=>$GSTValue,'AfterGST'=>$AfterGSTValue,'OtherTaxes'=>$OtherTaxValue,'AfterOtherTaxes'=>$AfterOtherTaxValue,'Insurance'=>$InsuranceValue,'TotalValue'=>$TotalOrderValue, 'UpdateBY'=>$updatedBy,'UpdatedOn'=>$updateddt); + + $this->purchaseorder_model->updateRevenueTax($LineItemNo,$RevenueTaxList); + + } + } + } - + echo 'Purchase Order Updated Successfully! PO Number Is: '.$PONO ; } - function UpdateServicePurchaseOrder() + function pageNotFound() + { + $this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found'; + + $this->loadViews("404", $this->global, NULL, NULL); + } + + public function revenuepoprint($PONO) { - $PONO =$this->input->post('txtPONO'); - - $POdt =$this->input->post('PODate'); - $PODate = $this->getDateformat($POdt); - - $SupplierID = $this->input->post('drpSupplier'); - $DeliveryAddr = $this->input->post('DeliveryAddr'); - $dt = $this->input->post('Deliverydt'); - $Deliverydt = $this->getDateformat($dt); - - $POType = $this->input->post('POType'); - - $SpcialInstruction = $this->input->post('txtSpcialInstruction'); - $TotalOrderValueSummary = $this->input->post('txtTotalOrderValueSummary'); - $POStatus = $this->input->post('txtStatus'); - - $updatedBy = $this->session->userdata ( 'userId' ); - $RowCount = $this->input->post('txtRowCount'); - - $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); - $updateddt = $dt->format('Y-m-d H:i:s'); - // PO Master - $POList = array('SupplierID'=>$SupplierID, 'TotalOrderValue'=>$TotalOrderValueSummary,'PODate'=>$PODate,'Status'=>$POStatus,'ServiceDescription'=>$SpcialInstruction,'UpdateBY'=>$updatedBy,'DeliveryAddress'=>$DeliveryAddr,'DeliveryDate'=>$Deliverydt,'UpdatedOn'=>$updateddt ); - - $POMaster = $this->purchaseorder_model->updatePOMaster($PONO,$POList); - - $LineItemStatus = REQITEM_NEW; - //echo ' test:'.REVENUE; - //echo $RowCount; - for ($i = 1; $i <= $RowCount; $i++) - { - $MaterialCode = $this->input->post('materialCode'.$i); - $Quantity = $this->input->post('quantity'.$i); - $Reqnumber = $this->input->post('Reqnumber'.$i); - $itemRate = $this->input->post('itemRate'.$i); - $ServiceTax = $this->input->post('ServiceTax'.$i); - $EduCess = $this->input->post('EduCess'.$i); - $SecHighTax = $this->input->post('SecHighTax'.$i); - $KrishiTax = $this->input->post('KrishiTax'.$i); - $SwachhTax = $this->input->post('SwachhTax'.$i); - $CostCenter = $this->input->post('costCode'.$i); - $LineItemNo = $this->input->post('LineItemNo'.$i); - $TotalOrderValue = $this->input->post('TotalOrderValue'.$i); - - $POLineItem = array(); - - - - if(strlen($LineItemNo) == 0) - { - $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'CreatedBy'=>$updatedBy,'CreatedDate'=>$updateddt,'CostCenterCode'=>$CostCenter); - $POLineItem = $this->purchaseorder_model->addPOLineItem($POLineItemList); - } - else - { - $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'UpdateBY'=>$updatedBy,'UpdatedOn'=>$updateddt,'CostCenterCode'=>$CostCenter); - $POLineItem = $this->purchaseorder_model->updatePOLineItem($PONO,$LineItemNo,$POLineItemList); - - } - - $LineItemNo = ''; - - if(count($POLineItem)>0) - { - $LineItemNo = $POLineItem[0]['LineItemNo']; - } - //echo $LineItemNo; - - if(trim($POType) == SERVICE ) - { - $isExists = $this->purchaseorder_model->LineItemExists($LineItemNo); - // echo 'Success'; - if(count($isExists) == 0) - { - $ServiceTaxList = array('LineItemNo'=>$LineItemNo, 'ServiceTax'=>$ServiceTax,'EducessTax'=>$EduCess,'SecHigherEducessTax'=>$SecHighTax,'KrishiKalyantax'=>$KrishiTax,'SwachhBharattax'=>$SwachhTax,'TotalValue'=>$TotalOrderValue, 'CreatedBy'=>$updatedBy,'CreatedDate'=>$updateddt); - - $ServiceTax = $this->purchaseorder_model->addServiceTax($ServiceTaxList); - } - else - { - $ServiceTaxList = array('LineItemNo'=>$LineItemNo, 'ServiceTax'=>$ServiceTax,'EducessTax'=>$EduCess,'SecHigherEducessTax'=>$SecHighTax,'KrishiKalyantax'=>$KrishiTax,'SwachhBharattax'=>$SwachhTax,'TotalValue'=>$TotalOrderValue, 'UpdateBY'=>$updatedBy,'UpdatedOn'=>$updateddt); - $this->purchaseorder_model->updateServiceTax($ServiceTaxList); - } - echo 'Service tax Success'; - } - echo 'Successfully updated the Record'; - } - - - } - public function revenuepoprint() { // Load all views as normal //$PONO = $_GET['PO']; - //$data['PODetail'] = $this->purchaseorder_model->getPurchaseOrder($PONO); - //$data['POLineItem'] = $this->purchaseorder_model->getPOLineItem($PONO); - //$this->global['pageTitle'] = 'Purchase Order Report'; + $data['CompanyDetails'] = $this->purchaseorder_model->getCompanyInformation(); + $data['POItem'] = $this->purchaseorder_model->GetRevenuePurchaseOrderDetailsForPDF($PONO); + // Add header to pdf - $this->load->view('includes/pdfheader'); + //$this->load->view('includes/pdfheader'); // Load the pdf page with multiviews - $this->load->View("revenuepopdf", NULL); + $this->load->View("revenuepopdf", $data); // Add header to pdf - $this->load->view('includes/pdffooter'); + //$this->load->view('includes/pdffooter'); // Get output html $php = $this->output->get_output(); @@ -647,24 +708,19 @@ class purchaseorder extends BaseController $this->dompdf->stream("RevenuePOReport.pdf",$data,$php); } - public function servicepoprint() { - // Load all views as normal - - - //$PONO = $_GET['PO']; - - //$data['PODetail'] = $this->purchaseorder_model->getPurchaseOrder($PONO); - //$data['POLineItem'] = $this->purchaseorder_model->getPOLineItem($PONO); - //$this->global['pageTitle'] = 'Purchase Order Report'; - - // Add header to pdf - $this->load->view('includes/pdfheader'); + public function servicepoprint($PONO) + { + + // $this->load->view('includes/pdfheader'); // Load the pdf page with multiviews - $this->load->View("servicepopdf", NULL); + $data['CompanyDetails'] = $this->purchaseorder_model->getCompanyInformation(); + $data['POItem'] = $this->purchaseorder_model->GetServicePurchaseOrderDetailsForPrint($PONO); + + $this->load->View("servicepopdf", $data); // Add header to pdf - $this->load->view('includes/pdffooter'); + //$this->load->view('includes/pdffooter'); // Get output html $php = $this->output->get_output(); @@ -679,76 +735,39 @@ class purchaseorder extends BaseController $this->dompdf->stream("ServicePOReport.pdf",$data,$php); } - public function importpoprint() { - // Load all views as normal - - - //$PONO = $_GET['PO']; - - //$data['PODetail'] = $this->purchaseorder_model->getPurchaseOrder($PONO); - //$data['POLineItem'] = $this->purchaseorder_model->getPOLineItem($PONO); - //$this->global['pageTitle'] = 'Purchase Order Report'; - - // Add header to pdf - $this->load->view('includes/pdfheader'); - - // Load the pdf page with multiviews - $this->load->View("importpopdf", NULL); - - // Add header to pdf - $this->load->view('includes/pdffooter'); - - // Get output html - $php = $this->output->get_output(); - - // Load library - $this->load->library('dompdf_gen'); - - // Convert to PDF - $this->dompdf->load_html($php); - $this->dompdf->render(); - $data['Attachment'] = FALSE; - $this->dompdf->stream("ImportPOReport.pdf",$data,$php); +/** + * This function used to load the Delete the Requistion Items + */ + function DeletePODetails() + { + + $ReqList= $this->input->post('id'); + $LineItemNo = ''; + $ReqNo =''; + $MaterialCode = ''; + $POType = ''; + if(count($ReqList) > 0) + { + $LineItemNo = $ReqList[0]; + $ReqNo = $ReqList[1]; + $MaterialCode = $ReqList[2]; + $POType = $ReqList[3]; + } + // print_r($ReqList); -} - public function capitalpoprint() { - // Load all views as normal - - - //$PONO = $_GET['PO']; - - //$data['PODetail'] = $this->purchaseorder_model->getPurchaseOrder($PONO); - //$data['POLineItem'] = $this->purchaseorder_model->getPOLineItem($PONO); - //$this->global['pageTitle'] = 'Purchase Order Report'; - - // Add header to pdf - $this->load->view('includes/pdfheader'); - - // Load the pdf page with multiviews - $this->load->View("capitalpopdf", NULL); - - // Add header to pdf - $this->load->view('includes/pdffooter'); - - // Get output html - $php = $this->output->get_output(); - - // Load library - $this->load->library('dompdf_gen'); - - // Convert to PDF - $this->dompdf->load_html($php); - $this->dompdf->render(); - $data['Attachment'] = FALSE; - $this->dompdf->stream("CapitalPOReport.pdf",$data,$php); - -} - function pageNotFound() - { - $this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found'; + + If($POType == REVENUE) + { + $this->purchaseorder_model->DeletePORevenueTax($LineItemNo); + } + else If($POType == SERVICE) + { + $this->purchaseorder_model->DeletePOServiceTax($LineItemNo); + } + $this->purchaseorder_model->DeletePOLineItem($LineItemNo , $ReqNo,$MaterialCode); + echo "Successfully Deleted the Line item".$LineItemNo; - $this->loadViews("404", $this->global, NULL, NULL); - } + } } ?> \ No newline at end of file diff --git a/application/controllers/purchaseorderform.php b/application/controllers/purchaseorderform.php index 061125ce..61b9914e 100644 --- a/application/controllers/purchaseorderform.php +++ b/application/controllers/purchaseorderform.php @@ -44,9 +44,7 @@ class purchaseorderform extends BaseController } function alternatepo() { - - - + $this->global['pageTitle'] = 'Siddharth : Alternate PO'; $this->loadViews("alterpurchaseorder", $this->global, NULL); diff --git a/application/controllers/requisitionform.php b/application/controllers/requisitionform.php index dca6a635..b2bf704f 100644 --- a/application/controllers/requisitionform.php +++ b/application/controllers/requisitionform.php @@ -356,7 +356,7 @@ class requisitionform extends BaseController } if($Status == REQ_DRAFT) { - echo 'Successfully Saved the Requistion details'; + echo 'Successfully Saved the Requistion details'; } else { @@ -433,9 +433,9 @@ class requisitionform extends BaseController } } + echo 'Successfully updated the Requistion details'; + // $this->requisitionlisting(); - $this->requisitionlisting(); - echo ""; @@ -443,6 +443,7 @@ class requisitionform extends BaseController /* To Edit the request*/ function ViewRequest() { + $ReqNo= $this->input->post('id'); $result = $this->requistion_model->getRequistItemList($ReqNo); $ReqList = $this->requistion_model->getRequistDetails($ReqNo); diff --git a/application/controllers/servicepurchaseorder.php b/application/controllers/servicepurchaseorder.php new file mode 100644 index 00000000..8aa153ee --- /dev/null +++ b/application/controllers/servicepurchaseorder.php @@ -0,0 +1,282 @@ +load->model('purchaseorder_model'); + + $this->load->library('session'); + $this->load->library('form_validation'); + $this->load->model('requistion_model'); + $this->isLoggedIn(); + } + + + // To get the available Budget Amount + function AvilBudgetAmount() + { + // echo 'Controller called'; + $CostCode = $this->input->post('id'); + $ReqType = $_GET['ReqType']; + + + $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); + + $Year = $dt->format('Y'); + $this->load->model('purchaseorder_model'); + $result = $this->purchaseorder_model->GetAvailableBudgetAmount($CostCode,$Year,$ReqType); + //print_r($result); + $AvilBudAmt = '0'; + if(count($result)>0) + { + $AvilBudAmt = $result[0]['BudgetAmount'] - $result[0]['Totalvalue']; + } + + // echo 'Test'; + print_r($AvilBudAmt); + //die(json_encode(array('Cost' => $AvilBudAmt))); + } + + + function getDateformat($Val) + { + $date = new DateTime($Val,new DateTimeZone('Asia/Kolkata')); + // print_r($date); + $retDate = $date->format('Y-m-d H:i:s'); + return $retDate; + } + + //This used to Create Service Purchase Order + function addNewServicePurchaseOrder() + { + $POdt =$this->input->post('PODate'); + $PODate = $this->getDateformat($POdt); + $SupplierID = $this->input->post('drpSupplier'); + $DeliveryAddr = $this->input->post('DeliveryAddr'); + $dt = $this->input->post('Deliverydt'); + $Deliverydt = $this->getDateformat($dt); + $POType = $this->input->post('POType'); + + $SpcialInstruction = $this->input->post('txtSpcialInstruction'); + $TotalOrderValueSummary = $this->input->post('txtTotalOrderValueSummary'); + $POStatus = $this->input->post('txtStatus'); + + $CreateBy = $this->session->userdata ( 'userId' ); + $RowCount = $this->input->post('txtRowCount'); + $DeletedRow = $this->input->post('txtDeletedRow'); + + $comma_separated = explode(':', $DeletedRow); + + $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); + $createddt = $dt->format('Y-m-d H:i:s'); + // PO Master + $POList = array('SupplierID'=>$SupplierID, 'TotalOrderValue'=>$TotalOrderValueSummary,'PODate'=>$PODate,'Status'=>$POStatus,'ServiceDescription'=>$SpcialInstruction,'CreatedBy'=>$CreateBy,'DeliveryAddress'=>$DeliveryAddr,'DeliveryDate'=>$Deliverydt,'CreatedDate'=>$createddt ); + + $POMaster = $this->purchaseorder_model->addPOMaster($POList); + + $PONO = ''; + if(count($POMaster)>0) + { + $PONO = $POMaster[0]['PONO']; + } + + // PO Line Items + $LineItemStatus = REQITEM_NEW; + + for ($i = 1; $i <= $RowCount; $i++) + { + + $MaterialCode = $this->input->post('materialCode'.$i); + $Quantity = $this->input->post('quantity'.$i); + $Reqnumber = $this->input->post('Reqnumber'.$i); + $itemRate = $this->input->post('itemRate'.$i); + $ServiceTax = $this->input->post('ServiceTax'.$i); + $EduCess = $this->input->post('EduCess'.$i); + $SecHighTax = $this->input->post('SecHighTax'.$i); + $KrishiTax = $this->input->post('KrishiTax'.$i); + $SwachhTax = $this->input->post('SwachhTax'.$i); + $CostCenter = $this->input->post('costCode'.$i); + + $TotalOrderValue = $this->input->post('TotalOrderValue'.$i); + + $SkipInsert = "False"; + if( count($comma_separated) > 0) + { + for($j = 1; $j < count($comma_separated); $j++) + { + $deletedRow = $comma_separated[$j] ; + + if($deletedRow == $i ) + { + $SkipInsert = "True"; + break; + } + + } + } + if($SkipInsert == "False") + { + + $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt,'CostCenterCode'=>$CostCenter); + + $POLineItem = $this->purchaseorder_model->addPOLineItem($POLineItemList); + + $LineItemNo = ''; + + if(count($POLineItem)>0) + { + $LineItemNo = $POLineItem[0]['LineItemNo']; + } + //echo $LineItemNo; + + if(trim($POType) == SERVICE ) + { + // echo 'Success'; + $ServiceTaxList = array('LineItemNo'=>$LineItemNo, 'ServiceTax'=>$ServiceTax,'EducessTax'=>$EduCess,'SecHigherEducessTax'=>$SecHighTax,'KrishiKalyantax'=>$KrishiTax,'SwachhBharattax'=>$SwachhTax,'TotalValue'=>$TotalOrderValue, 'CreatedBy'=>$CreateBy,'CreatedDate'=>$createddt); + + $ServiceTax = $this->purchaseorder_model->addServiceTax($ServiceTaxList); + + } + } + + } + echo 'Service Purchase Order Created Successfully!The PO NO Is: '.$PONO; + + } + function UpdateServicePurchaseOrder() + { + $PONO =$this->input->post('txtPONO'); + //echo $PONO; + $POdt =$this->input->post('PODate'); + $PODate = $this->getDateformat($POdt); + + $SupplierID = $this->input->post('drpSupplier'); + $DeliveryAddr = $this->input->post('txtDeliveryAddress'); + $dt = $this->input->post('Deliverydt'); + $Deliverydt = $this->getDateformat($dt); + + $POType = $this->input->post('POType'); + + $SpcialInstruction = $this->input->post('SpcialInstruction'); + $TotalOrderValueSummary = $this->input->post('txtTotalOrderValueSummary'); + $POStatus = $this->input->post('txtStatus'); + + $updatedBy = $this->session->userdata ( 'userId' ); + $RowCount = $this->input->post('txtRowCount'); + $DeletedRow = $this->input->post('txtDeletedRow'); + + $comma_separated = explode(':', $DeletedRow); + $dt = new DateTime('now', new DateTimeZone('Asia/Kolkata')); + $updateddt = $dt->format('Y-m-d H:i:s'); + + + // PO Master + $POList = array('SupplierID'=>$SupplierID, 'TotalOrderValue'=>$TotalOrderValueSummary,'PODate'=>$PODate,'Status'=>$POStatus,'ServiceDescription'=>$SpcialInstruction,'UpdateBY'=>$updatedBy,'DeliveryAddress'=>$DeliveryAddr,'DeliveryDate'=>$Deliverydt,'UpdatedOn'=>$updateddt ); + + $POMaster = $this->purchaseorder_model->updatePOMaster($PONO,$POList); + + $LineItemStatus = REQITEM_NEW; + + for ($i = 1; $i <= $RowCount; $i++) + { + $MaterialCode = $this->input->post('materialCode'.$i); + $Quantity = $this->input->post('quantity'.$i); + $Reqnumber = $this->input->post('Reqnumber'.$i); + $itemRate = $this->input->post('itemRate'.$i); + $ServiceTax = $this->input->post('ServiceTax'.$i); + $EduCess = $this->input->post('EduCess'.$i); + $SecHighTax = $this->input->post('SecHighTax'.$i); + $KrishiTax = $this->input->post('KrishiTax'.$i); + $SwachhTax = $this->input->post('SwachhTax'.$i); + $CostCenter = $this->input->post('costCode'.$i); + $POLineItemNo = $this->input->post('LineItemNo'.$i); + $TotalOrderValue = $this->input->post('TotalOrderValue'.$i); + + $POLineItem = array(); + $LineItemNo = ''; + $SkipInsert = "False"; + if( count($comma_separated) > 0) + { + for($j = 1; $j < count($comma_separated); $j++) + { + $deletedRow = $comma_separated[$j] ; + + if($deletedRow == $i ) + { + $SkipInsert = "True"; + break; + } + + } + } + if($SkipInsert == "False") + { + if(strlen($POLineItemNo) == 0) + { + $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'CreatedBy'=>$updatedBy,'CreatedDate'=>$updateddt,'CostCenterCode'=>$CostCenter); + $POLineItem = $this->purchaseorder_model->addPOLineItem($POLineItemList); + if(count($POLineItem)>0) + { + $LineItemNo = $POLineItem[0]['LineItemNo']; + } + + } + else + { + $LineItemNo = $POLineItemNo; + + $POLineItemList = array('PONO'=>$PONO, 'ReqNo'=>$Reqnumber,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity,'Rate'=>$itemRate,'Status'=>$LineItemStatus,'UpdateBY'=>$updatedBy,'UpdatedOn'=>$updateddt,'CostCenterCode'=>$CostCenter); + $POLineItem = $this->purchaseorder_model->updatePOLineItem($PONO,$POLineItemNo,$POLineItemList); + + } + + + + if(trim($POType) == SERVICE ) + { + $isExists = $this->purchaseorder_model->LineItemExists($LineItemNo); + + if(count($isExists) == 0) + { + $ServiceTaxList = array('LineItemNo'=>$LineItemNo, 'ServiceTax'=>$ServiceTax,'EducessTax'=>$EduCess,'SecHigherEducessTax'=>$SecHighTax,'KrishiKalyantax'=>$KrishiTax,'SwachhBharattax'=>$SwachhTax,'TotalValue'=>$TotalOrderValue, 'CreatedBy'=>$updatedBy,'CreatedDate'=>$updateddt); + + $this->purchaseorder_model->addServiceTax($ServiceTaxList); + + } + else + { + $ServiceTaxList1 = array('ServiceTax'=>$ServiceTax,'EducessTax'=>$EduCess,'SecHigherEducessTax'=>$SecHighTax,'KrishiKalyantax'=>$KrishiTax,'SwachhBharattax'=>$SwachhTax,'TotalValue'=>$TotalOrderValue, 'UpdateBY'=>$updatedBy,'UpdatedOn'=>$updateddt); + + $this->purchaseorder_model->updateServiceTax($LineItemNo,$ServiceTaxList1); + + } + + } + + } + } + echo 'Successfully updated the Service Purchase Order'; + } + function pageNotFound() + { + $this->global['pageTitle'] = 'CodeInsect : 404 - Page Not Found'; + + $this->loadViews("404", $this->global, NULL, NULL); + } +} + +?> \ No newline at end of file diff --git a/application/logs/log-2017-05-22.php b/application/logs/log-2017-05-22.php index 3b904e20..242c6c68 100644 --- a/application/logs/log-2017-05-22.php +++ b/application/logs/log-2017-05-22.php @@ -1,35 +1,66 @@ -ERROR - 2017-05-22 08:05:22 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77 -ERROR - 2017-05-22 08:05:22 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77 -ERROR - 2017-05-22 08:05:22 --> Unable to connect to the database -ERROR - 2017-05-22 08:05:31 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77 -ERROR - 2017-05-22 08:05:31 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77 -ERROR - 2017-05-22 08:05:31 --> Unable to connect to the database -ERROR - 2017-05-22 14:29:59 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77 -ERROR - 2017-05-22 14:29:59 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77 -ERROR - 2017-05-22 14:29:59 --> Unable to connect to the database -ERROR - 2017-05-22 14:30:06 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77 -ERROR - 2017-05-22 14:30:06 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77 -ERROR - 2017-05-22 14:30:06 --> Unable to connect to the database -ERROR - 2017-05-22 14:30:14 --> Severity: Warning --> mysqli_connect(): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77 -ERROR - 2017-05-22 14:30:14 --> Severity: Warning --> mysqli_connect(): (HY000/2002): php_network_getaddresses: getaddrinfo failed: No such host is known. C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_driver.php 77 -ERROR - 2017-05-22 14:30:14 --> Unable to connect to the database -ERROR - 2017-05-22 14:41:32 --> Severity: Warning --> call_user_func_array() expects parameter 1 to be a valid callback, class 'Error' does not have a method 'index' C:\xampp\htdocs\siddharth_application\system\core\CodeIgniter.php 360 -ERROR - 2017-05-22 14:41:47 --> Severity: Notice --> Undefined index: PO C:\xampp\htdocs\siddharth_application\application\controllers\c_test.php 21 -ERROR - 2017-05-22 14:43:09 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\c_test.php 31 -ERROR - 2017-05-22 14:43:20 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\c_test.php 31 -ERROR - 2017-05-22 14:43:42 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\c_test.php 31 -ERROR - 2017-05-22 14:43:47 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\c_test.php 31 -ERROR - 2017-05-22 14:44:21 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\c_test.php 31 -ERROR - 2017-05-22 14:44:26 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\c_test.php 31 -ERROR - 2017-05-22 14:45:27 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\c_test.php 31 -ERROR - 2017-05-22 14:45:27 --> Severity: Warning --> Illegal string offset 'Content-Disposition' C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\cpdf_adapter.cls.php 889 -ERROR - 2017-05-22 14:47:08 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\c_test.php 31 -ERROR - 2017-05-22 14:47:08 --> Severity: Notice --> Undefined variable: php C:\xampp\htdocs\siddharth_application\application\controllers\c_test.php 43 -ERROR - 2017-05-22 14:48:20 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\c_test.php 31 -ERROR - 2017-05-22 14:48:21 --> Severity: Warning --> Illegal string offset 'Content-Disposition' C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\cpdf_adapter.cls.php 889 -ERROR - 2017-05-22 14:53:37 --> Severity: Notice --> Undefined variable: data C:\xampp\htdocs\siddharth_application\application\controllers\c_test.php 31 -ERROR - 2017-05-22 14:53:38 --> Severity: Warning --> Illegal string offset 'Content-Disposition' C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\cpdf_adapter.cls.php 889 -ERROR - 2017-05-22 14:54:54 --> Severity: Warning --> Illegal string offset 'Content-Disposition' C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\cpdf_adapter.cls.php 889 -ERROR - 2017-05-22 14:57:43 --> Severity: Notice --> Undefined index: PO C:\xampp\htdocs\siddharth_application\application\controllers\c_test.php 21 +ERROR - 2017-05-22 09:44:17 --> Query error: Column 'LineItemNo' cannot be null +ERROR - 2017-05-22 10:01:18 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605 +ERROR - 2017-05-22 10:01:18 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605 +ERROR - 2017-05-22 10:01:18 --> Query error: Unknown column 'Array' in 'where clause' +ERROR - 2017-05-22 10:28:20 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605 +ERROR - 2017-05-22 10:28:20 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605 +ERROR - 2017-05-22 10:28:20 --> Query error: Unknown column 'Array' in 'where clause' +ERROR - 2017-05-22 10:30:46 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605 +ERROR - 2017-05-22 10:30:46 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605 +ERROR - 2017-05-22 10:30:46 --> Query error: Unknown column 'Array' in 'where clause' +ERROR - 2017-05-22 10:32:21 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605 +ERROR - 2017-05-22 10:32:21 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605 +ERROR - 2017-05-22 10:32:21 --> Query error: Unknown column 'Array' in 'where clause' +ERROR - 2017-05-22 10:38:35 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605 +ERROR - 2017-05-22 10:38:35 --> Severity: Notice --> Array to string conversion C:\xampp\htdocs\siddharth_application\system\database\DB_driver.php 605 +ERROR - 2017-05-22 10:38:35 --> Query error: Unknown column 'Array' in 'where clause' +ERROR - 2017-05-22 10:49:27 --> Severity: Notice --> Undefined index: Totalvalue C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 46 +ERROR - 2017-05-22 10:50:22 --> Severity: Notice --> Undefined index: Totalvalue C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 46 +ERROR - 2017-05-22 10:57:22 --> Query error: Column 'LineItemNo' cannot be null +ERROR - 2017-05-22 11:10:47 --> Query error: Column 'LineItemNo' cannot be null +ERROR - 2017-05-22 11:21:52 --> Query error: Column 'LineItemNo' cannot be null +ERROR - 2017-05-22 11:27:09 --> Query error: Column 'LineItemNo' cannot be null +ERROR - 2017-05-22 11:28:34 --> Query error: Column 'LineItemNo' cannot be null +ERROR - 2017-05-22 11:29:38 --> Query error: Column 'LineItemNo' cannot be null +ERROR - 2017-05-22 12:30:27 --> Query error: Unknown column 'ServiceTax' in 'field list' +ERROR - 2017-05-22 12:40:09 --> Query error: Unknown column 'ServiceTax' in 'field list' +ERROR - 2017-05-22 12:42:17 --> Query error: Unknown column 'ServiceTax' in 'field list' +ERROR - 2017-05-22 12:46:14 --> Severity: Notice --> Use of undefined constant i - assumed 'i' C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231 +ERROR - 2017-05-22 12:46:14 --> Severity: Notice --> Undefined index: i C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231 +ERROR - 2017-05-22 12:46:14 --> Severity: Notice --> Use of undefined constant i - assumed 'i' C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231 +ERROR - 2017-05-22 12:46:14 --> Severity: Notice --> Undefined index: i C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231 +ERROR - 2017-05-22 12:46:14 --> Severity: Notice --> Use of undefined constant i - assumed 'i' C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231 +ERROR - 2017-05-22 12:46:14 --> Severity: Notice --> Undefined index: i C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231 +ERROR - 2017-05-22 12:46:35 --> Severity: Notice --> Undefined offset: 1 C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231 +ERROR - 2017-05-22 12:46:35 --> Severity: Notice --> Undefined offset: 2 C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231 +ERROR - 2017-05-22 12:46:35 --> Severity: Notice --> Undefined offset: 3 C:\xampp\htdocs\siddharth_application\application\controllers\servicepurchaseorder.php 231 +ERROR - 2017-05-22 12:49:00 --> Severity: Notice --> Undefined variable: TaxId C:\xampp\htdocs\siddharth_application\application\models\purchaseorder_model.php 437 +ERROR - 2017-05-22 12:49:00 --> Query error: Unknown column 'TaxID' in 'where clause' +ERROR - 2017-05-22 12:50:30 --> Severity: Notice --> Undefined variable: TaxId C:\xampp\htdocs\siddharth_application\application\models\purchaseorder_model.php 437 +ERROR - 2017-05-22 12:50:30 --> Severity: Notice --> Undefined variable: TaxId C:\xampp\htdocs\siddharth_application\application\models\purchaseorder_model.php 437 +ERROR - 2017-05-22 12:50:31 --> Severity: Notice --> Undefined variable: TaxId C:\xampp\htdocs\siddharth_application\application\models\purchaseorder_model.php 437 +ERROR - 2017-05-22 14:09:06 --> Query error: Unknown column 'ST015' in 'where clause' +ERROR - 2017-05-22 14:14:05 --> Query error: Unknown column 'ST015' in 'where clause' +ERROR - 2017-05-22 14:16:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41 +ERROR - 2017-05-22 14:16:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41 +ERROR - 2017-05-22 14:16:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41 +ERROR - 2017-05-22 14:16:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41 +ERROR - 2017-05-22 14:16:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41 +ERROR - 2017-05-22 14:16:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41 +ERROR - 2017-05-22 14:16:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41 +ERROR - 2017-05-22 14:16:49 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41 +ERROR - 2017-05-22 14:16:49 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41 +ERROR - 2017-05-22 14:16:49 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41 +ERROR - 2017-05-22 14:16:49 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41 +ERROR - 2017-05-22 14:16:49 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41 +ERROR - 2017-05-22 14:16:49 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41 +ERROR - 2017-05-22 14:16:49 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 41 +ERROR - 2017-05-22 14:19:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-22 14:19:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-22 14:19:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-22 14:19:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-22 14:19:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-22 14:19:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-22 14:19:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application\application\views\requisitionlistapproval.php 37 diff --git a/application/logs/log-2017-05-23.php b/application/logs/log-2017-05-23.php index 9ed78018..c5f0a569 100644 --- a/application/logs/log-2017-05-23.php +++ b/application/logs/log-2017-05-23.php @@ -1,67 +1,127 @@ -ERROR - 2017-05-23 08:56:51 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 09:15:03 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 09:18:52 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 09:25:20 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 09:30:45 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 09:33:14 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 09:35:56 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 09:44:38 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 09:51:39 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 09:51:39 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 09:51:39 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 09:54:34 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 09:54:51 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 09:55:11 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 09:57:56 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 10:00:07 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 10:00:48 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 10:01:25 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 10:57:35 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 10:58:22 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 10:59:23 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:00:30 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:01:04 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:02:08 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:17:38 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:17:48 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:20:50 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:21:19 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:23:58 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:26:14 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:28:52 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:29:34 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:29:41 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:31:02 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:31:28 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:34:24 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:35:26 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:35:49 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:36:11 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:37:00 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:37:49 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:38:19 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:39:08 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:39:40 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:40:12 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:40:38 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:40:54 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:45:28 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:45:41 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:50:35 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:57:40 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 11:58:42 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 12:00:42 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 12:01:11 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 12:02:13 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 12:04:07 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 12:05:03 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 12:05:34 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 12:08:37 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 12:09:38 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 12:09:50 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 12:11:15 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 12:13:47 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 12:15:12 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 -ERROR - 2017-05-23 12:15:55 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-23 07:29:37 --> Severity: Warning --> mysqli_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. + C:\xampp\htdocs\siddharth_application_23mayServicePOcompl\system\database\drivers\mysqli\mysqli_driver.php 77 +ERROR - 2017-05-23 07:29:37 --> Unable to connect to the database +ERROR - 2017-05-23 07:30:06 --> Severity: Warning --> mysqli_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. + C:\xampp\htdocs\siddharth_application_23mayServicePOcompl\system\database\drivers\mysqli\mysqli_driver.php 77 +ERROR - 2017-05-23 07:30:06 --> Unable to connect to the database +ERROR - 2017-05-23 07:30:40 --> Severity: Warning --> mysqli_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. + C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_driver.php 77 +ERROR - 2017-05-23 07:30:40 --> Unable to connect to the database +ERROR - 2017-05-23 07:31:23 --> Severity: Warning --> mysqli_connect(): (HY000/2002): A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. + C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_driver.php 77 +ERROR - 2017-05-23 07:31:23 --> Unable to connect to the database +ERROR - 2017-05-23 07:36:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-23 07:36:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-23 07:36:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-23 07:36:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-23 07:36:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-23 07:36:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-23 07:36:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-23 07:37:42 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 91 +ERROR - 2017-05-23 07:37:42 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 96 +ERROR - 2017-05-23 07:37:42 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 5 +ERROR - 2017-05-23 07:43:15 --> Severity: Notice --> Undefined variable: Selected C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 92 +ERROR - 2017-05-23 07:43:15 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 92 +ERROR - 2017-05-23 07:43:15 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 97 +ERROR - 2017-05-23 07:43:15 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 5 +ERROR - 2017-05-23 07:44:28 --> Query error: Cannot add or update a child row: a foreign key constraint fails (`kasiram9_SiddharthIndustries`.`T_PurchaseOrder_LineItem`, CONSTRAINT `T_Requestion_MasterReqNo` FOREIGN KEY (`ReqNo`) REFERENCES `T_Requestion_Master` (`ReqNo`) ON UPDATE CASCADE) +ERROR - 2017-05-23 16:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReqBy C:\xampp\htdocs\siddharth_application_23mayPO\application\views\editRevenuepurchaseorder.php 1560 +ERROR - 2017-05-23 16:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReqType C:\xampp\htdocs\siddharth_application_23mayPO\application\views\editRevenuepurchaseorder.php 1561 +ERROR - 2017-05-23 16:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReqBy C:\xampp\htdocs\siddharth_application_23mayPO\application\views\editRevenuepurchaseorder.php 1560 +ERROR - 2017-05-23 16:11:49 --> Severity: Notice --> Undefined property: stdClass::$ReqType C:\xampp\htdocs\siddharth_application_23mayPO\application\views\editRevenuepurchaseorder.php 1561 +ERROR - 2017-05-23 16:14:19 --> Severity: Notice --> Undefined property: stdClass::$ReqType C:\xampp\htdocs\siddharth_application_23mayPO\application\views\editRevenuepurchaseorder.php 1561 +ERROR - 2017-05-23 16:14:19 --> Severity: Notice --> Undefined property: stdClass::$ReqType C:\xampp\htdocs\siddharth_application_23mayPO\application\views\editRevenuepurchaseorder.php 1561 +ERROR - 2017-05-23 16:36:46 --> Severity: Notice --> Undefined property: stdClass::$CostCenterCode C:\xampp\htdocs\siddharth_application_23mayPO\application\views\editRevenuepurchaseorder.php 2637 +ERROR - 2017-05-23 17:22:59 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-23 17:22:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:22:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 642 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-23 17:23:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:14 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 642 +ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 516 +ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-23 17:23:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 642 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-23 17:24:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 diff --git a/application/logs/log-2017-05-24.php b/application/logs/log-2017-05-24.php new file mode 100644 index 00000000..9d7d557b --- /dev/null +++ b/application/logs/log-2017-05-24.php @@ -0,0 +1,1376 @@ + + +ERROR - 2017-05-24 08:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:14:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:17:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:17:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:17:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:17:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:17:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:17:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:17:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:22:43 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:22:43 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:22:43 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:22:43 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:22:44 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:22:44 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:22:44 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:23:51 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:23:51 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:23:51 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:23:51 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:23:51 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:23:51 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 08:23:51 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 09:26:01 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 09:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 642 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-24 09:26:02 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 642 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-24 09:26:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 494 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:27:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:36 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:28:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:30:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:50:58 --> Severity: Notice --> Undefined property: stdClass::$PONO C:\xampp\htdocs\siddharth_application_23mayPO\application\views\servicepopdf.php 33 +ERROR - 2017-05-24 09:50:58 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 09:50:59 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:03:50 --> Severity: Notice --> Undefined property: stdClass::$PONO C:\xampp\htdocs\siddharth_application_23mayPO\application\views\servicepopdf.php 34 +ERROR - 2017-05-24 11:03:50 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:03:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:05:43 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:05:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:06:46 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:08:30 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:08:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:09:40 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:09:40 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:09:40 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:09:40 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:09:40 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:09:40 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:09:40 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:09:40 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:09:40 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:09:40 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:09:40 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:09:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:09:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:09:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:09:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:09:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:09:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:09:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:09:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:09:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:11:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:12:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:13:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:23 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:14:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:24 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:15:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:35 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:52 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:16:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:17:34 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:30 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:20:50 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:24:29 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:24:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:24:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:24:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:24:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:24:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:24:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:24:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:24:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:24:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:24:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:00 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:25:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:18 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:25:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:25:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:01 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:26:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:20 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:27:21 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:29:37 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:30:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:13 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:31:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:06 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:17 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:32:48 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:51 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:40:52 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:41:25 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:15 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:43:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:44:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 442 +ERROR - 2017-05-24 11:47:19 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 442 +ERROR - 2017-05-24 11:47:38 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 442 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:28 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:48:28 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:28 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:28 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:28 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:28 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:28 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:28 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:28 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:28 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:28 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 442 +ERROR - 2017-05-24 11:48:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:48:29 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 442 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 11:49:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:17:53 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 12:17:53 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 12:17:53 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 12:17:53 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 12:17:53 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 12:17:53 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 12:17:53 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 12:18:30 --> Severity: Notice --> Undefined variable: SubTotalAmount C:\xampp\htdocs\siddharth_application_23mayPO\application\views\revenuepopdf.php 121 +ERROR - 2017-05-24 12:18:30 --> Severity: Notice --> Undefined variable: ServiceTax C:\xampp\htdocs\siddharth_application_23mayPO\application\views\revenuepopdf.php 127 +ERROR - 2017-05-24 12:18:30 --> Severity: Notice --> Undefined variable: EducessTax C:\xampp\htdocs\siddharth_application_23mayPO\application\views\revenuepopdf.php 132 +ERROR - 2017-05-24 12:18:30 --> Severity: Notice --> Undefined variable: SecHigherEducessTax C:\xampp\htdocs\siddharth_application_23mayPO\application\views\revenuepopdf.php 137 +ERROR - 2017-05-24 12:18:30 --> Severity: Notice --> Undefined variable: KrishiKalyantax C:\xampp\htdocs\siddharth_application_23mayPO\application\views\revenuepopdf.php 142 +ERROR - 2017-05-24 12:18:30 --> Severity: Notice --> Undefined variable: SwachhBharattax C:\xampp\htdocs\siddharth_application_23mayPO\application\views\revenuepopdf.php 147 +ERROR - 2017-05-24 12:18:30 --> Severity: Notice --> Undefined variable: OrderValue C:\xampp\htdocs\siddharth_application_23mayPO\application\views\revenuepopdf.php 152 +ERROR - 2017-05-24 12:18:30 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 442 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 442 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 442 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 442 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 442 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 442 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:18:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:19 --> Severity: Notice --> Undefined variable: SubTotalAmount C:\xampp\htdocs\siddharth_application_23mayPO\application\views\revenuepopdf.php 110 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 442 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 442 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:41:20 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:08 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:42:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:43:44 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 12:43:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:43:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:43:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:43:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:43:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:43:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:43:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:43:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:43:44 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 12:43:45 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:43:45 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:43:45 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:43:45 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:43:45 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:43:45 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:43:45 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:44:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:18 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:46:39 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:42 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-24 12:59:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:43 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:43 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:43 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:43 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:43 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:43 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:43 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-24 12:59:43 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:43 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:43 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:43 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:43 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:43 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:43 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 12:59:43 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-24 14:15:29 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-24 14:15:55 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:15:55 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:15:55 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:15:55 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:15:55 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:15:55 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:15:55 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:23:35 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:29:16 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\addNew.php 46 +ERROR - 2017-05-24 14:31:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:31:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:31:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:31:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:31:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:31:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:31:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:31:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:31:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:31:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:31:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:31:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:31:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:31:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:32:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:32:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:32:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:32:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:32:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:32:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:32:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:33:58 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:33:58 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:33:58 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:33:58 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:33:58 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:33:58 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:33:58 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:34:03 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:34:03 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:34:03 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:34:03 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:34:03 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:34:03 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:34:03 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:34:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:34:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:34:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:34:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:34:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:34:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-24 14:34:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 diff --git a/application/logs/log-2017-05-25.php b/application/logs/log-2017-05-25.php new file mode 100644 index 00000000..7c0b82fc --- /dev/null +++ b/application/logs/log-2017-05-25.php @@ -0,0 +1,227 @@ + + +ERROR - 2017-05-25 07:47:31 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 07:50:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 88 +ERROR - 2017-05-25 07:50:59 --> Severity: Warning --> Invalid argument supplied for foreach() C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 93 +ERROR - 2017-05-25 07:50:59 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ')' at line 5 +ERROR - 2017-05-25 07:58:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 07:58:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 07:58:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 07:58:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 07:58:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 07:58:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 07:58:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 08:00:48 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\block_frame_reflower.cls.php 442 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:00 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:01:55 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 08:04:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 08:04:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 08:04:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 08:04:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 08:04:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 08:04:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 08:04:02 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 08:05:09 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 08:05:09 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 08:05:09 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 08:05:09 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 08:05:09 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 08:05:09 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 08:05:09 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 08:09:12 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 08:09:42 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 08:10:09 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 08:46:24 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 08:50:13 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 08:51:50 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 09:18:37 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 09:20:44 --> Severity: Notice --> Undefined variable: query C:\xampp\htdocs\siddharth_application_23mayPO\application\models\purchaseorder_model.php 686 +ERROR - 2017-05-25 09:21:42 --> Severity: Notice --> Undefined variable: result C:\xampp\htdocs\siddharth_application_23mayPO\application\models\purchaseorder_model.php 686 +ERROR - 2017-05-25 09:24:51 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 11:34:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:34:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:34:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:34:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:34:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:34:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:34:30 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:35:36 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 11:36:22 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 11:37:49 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 11:46:52 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 11:51:24 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:51:24 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:51:24 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:51:24 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:51:24 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:51:24 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:51:24 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:53:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:53:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:53:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:53:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:53:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:53:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 11:53:22 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 12:46:54 --> Severity: Notice --> Use of undefined constant result - assumed 'result' C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 125 +ERROR - 2017-05-25 13:40:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 13:40:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 13:40:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 13:40:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 13:40:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 13:40:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 13:40:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 13:41:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 13:41:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 13:41:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 13:41:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 13:41:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 13:41:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 13:41:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 15:15:26 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '' at line 7 +ERROR - 2017-05-25 15:15:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 15:15:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 15:15:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 15:15:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 15:15:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 15:15:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 15:15:46 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 15:16:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 15:16:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 15:16:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 15:16:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 15:16:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 15:16:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 15:16:45 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:01:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:01:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:01:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:01:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:01:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:01:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:01:17 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:01:55 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 16:03:19 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 16:03:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:03:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:03:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:03:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:03:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:03:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:03:34 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:09:26 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:09:26 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:09:26 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:09:26 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:09:26 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:09:26 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:09:26 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:12:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:12:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:12:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:12:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:12:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:12:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:12:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:13:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:13:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:13:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:13:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:13:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:13:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:13:59 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:15:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:15:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:15:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:15:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:15:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:15:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:15:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:17:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:17:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:17:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:17:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:17:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:17:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:17:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:18:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:18:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:18:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:18:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:18:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:18:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:18:19 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:19:07 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:19:07 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:19:07 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:19:08 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:19:08 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:19:08 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:19:08 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:36:19 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 16:44:57 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:44:57 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:44:57 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:44:57 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:44:57 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:44:57 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:44:57 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-25 16:48:24 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-25 16:48:29 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-25 16:48:30 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 diff --git a/application/logs/log-2017-05-26.php b/application/logs/log-2017-05-26.php new file mode 100644 index 00000000..c3cf2cbd --- /dev/null +++ b/application/logs/log-2017-05-26.php @@ -0,0 +1,108 @@ + + +ERROR - 2017-05-26 08:42:01 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 08:42:01 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 08:42:01 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 08:42:01 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 08:42:01 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 08:42:01 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 08:42:01 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 08:42:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 08:42:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 08:42:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 08:42:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 08:42:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 08:42:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 08:42:21 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 09:59:55 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-26 11:26:22 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-26 11:28:43 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-26 11:34:19 --> Query error: Cannot delete or update a parent row: a foreign key constraint fails (`kasiram9_SiddharthIndustries`.`T_Revenue_Tax`, CONSTRAINT `T_PurchaseLineItemNo` FOREIGN KEY (`LineItemNo`) REFERENCES `T_PurchaseOrder_LineItem` (`LineItemNo`) ON UPDATE CASCADE) +ERROR - 2017-05-26 11:34:29 --> Query error: Cannot delete or update a parent row: a foreign key constraint fails (`kasiram9_SiddharthIndustries`.`T_Revenue_Tax`, CONSTRAINT `T_PurchaseLineItemNo` FOREIGN KEY (`LineItemNo`) REFERENCES `T_PurchaseOrder_LineItem` (`LineItemNo`) ON UPDATE CASCADE) +ERROR - 2017-05-26 11:37:08 --> Severity: Warning --> print_r() expects at least 1 parameter, 0 given C:\xampp\htdocs\siddharth_application_23mayPO\application\controllers\purchaseorder.php 741 +ERROR - 2017-05-26 11:38:36 --> Query error: Cannot delete or update a parent row: a foreign key constraint fails (`kasiram9_SiddharthIndustries`.`T_Revenue_Tax`, CONSTRAINT `T_PurchaseLineItemNo` FOREIGN KEY (`LineItemNo`) REFERENCES `T_PurchaseOrder_LineItem` (`LineItemNo`) ON UPDATE CASCADE) +ERROR - 2017-05-26 11:40:21 --> Query error: Cannot delete or update a parent row: a foreign key constraint fails (`kasiram9_SiddharthIndustries`.`T_Revenue_Tax`, CONSTRAINT `T_PurchaseLineItemNo` FOREIGN KEY (`LineItemNo`) REFERENCES `T_PurchaseOrder_LineItem` (`LineItemNo`) ON UPDATE CASCADE) +ERROR - 2017-05-26 12:43:04 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-26 12:46:56 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-26 12:48:00 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-26 12:49:00 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-26 12:52:45 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-26 12:53:10 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-26 13:12:25 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-26 13:15:35 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-26 13:40:46 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-26 14:39:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 14:39:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 14:39:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 14:39:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 14:39:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 14:39:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 14:39:36 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 14:40:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 14:40:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 14:40:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 14:40:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 14:40:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 14:40:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 14:40:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 14:54:23 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-26 14:55:03 --> Query error: Subquery returns more than 1 row +ERROR - 2017-05-26 14:55:15 --> Query error: Subquery returns more than 1 row +ERROR - 2017-05-26 14:55:40 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:55:57 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:56:36 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-26 14:57:40 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-26 15:38:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 15:38:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 15:38:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 15:38:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 15:38:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 15:38:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 15:38:05 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-26 15:38:54 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 diff --git a/application/logs/log-2017-05-27.php b/application/logs/log-2017-05-27.php new file mode 100644 index 00000000..23143b5d --- /dev/null +++ b/application/logs/log-2017-05-27.php @@ -0,0 +1,73 @@ + + +ERROR - 2017-05-27 07:26:19 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-27 11:24:27 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 11:24:27 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 11:24:27 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 11:24:27 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 11:24:27 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 11:24:27 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 11:24:27 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 11:24:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 11:24:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 11:24:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 11:24:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 11:24:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 11:24:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 11:24:47 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 11:27:02 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-27 11:27:05 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-27 11:37:00 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-27 11:37:33 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-27 11:40:52 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-27 11:41:11 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:41:12 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-27 11:42:18 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-27 11:52:42 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-27 13:32:32 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 13:32:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 13:32:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 13:32:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 13:32:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 13:32:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 13:32:33 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 13:32:38 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-27 13:37:50 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 13:37:50 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 13:37:50 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 13:37:50 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 13:37:50 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 13:37:50 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 13:37:50 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-27 13:38:12 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-27 13:40:47 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-27 13:41:22 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 diff --git a/application/logs/log-2017-05-29.php b/application/logs/log-2017-05-29.php new file mode 100644 index 00000000..bbb568c6 --- /dev/null +++ b/application/logs/log-2017-05-29.php @@ -0,0 +1,217 @@ + + +ERROR - 2017-05-29 07:04:41 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 07:04:41 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 07:04:41 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 07:04:41 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 07:04:41 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 07:04:41 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 07:04:41 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 08:35:20 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 08:35:20 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 08:35:20 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 08:35:20 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 08:35:20 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 08:35:20 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 08:35:20 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 08:35:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 08:35:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 08:35:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 08:35:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 08:35:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 08:35:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 08:35:40 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 12:00:01 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:00:10 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:10:11 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 12:10:11 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 12:10:11 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 12:10:11 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 12:10:11 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 12:10:11 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 12:10:11 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 12:10:29 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 12:10:29 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 12:10:29 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 12:10:29 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 12:10:29 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 12:10:29 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 12:10:29 --> Severity: Notice --> Undefined index: RequisitionStatus C:\xampp\htdocs\siddharth_application_23mayPO\application\views\requisitionlistapproval.php 37 +ERROR - 2017-05-29 12:12:01 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:12:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:14:04 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-29 12:34:01 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-29 12:35:17 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-29 12:38:56 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-29 12:39:57 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-29 12:46:02 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-29 12:46:36 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-29 12:53:08 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-29 12:53:15 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:16 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:31 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:53:32 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:57:08 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:41 --> Query error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '*,CostCenterCode , POMaster.*,sup.SupplierName,sup.Address + FROM T_PurchaseOr' at line 5 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 12:58:53 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:22 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:01:56 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-29 13:14:09 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application_23mayPO\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-29 13:14:09 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application_23mayPO\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-29 13:14:09 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-29 13:14:09 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-29 13:14:09 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-29 13:14:09 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application_23mayPO\application\views\alterpurchaseorder.php 171 diff --git a/application/logs/log-2017-05-30.php b/application/logs/log-2017-05-30.php new file mode 100644 index 00000000..dec917ce --- /dev/null +++ b/application/logs/log-2017-05-30.php @@ -0,0 +1,418 @@ + + +ERROR - 2017-05-30 08:16:22 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-30 08:20:46 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-30 09:25:00 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-30 09:34:58 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application_23mayPO\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-30 09:35:08 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:35:09 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:16 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:17 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:40:42 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:50 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:41:51 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:42:41 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\table_cell_frame_reflower.cls.php 131 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:45:27 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> explode() expects parameter 2 to be string, array given C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\style.cls.php 948 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 09:46:03 --> Severity: Warning --> A non-numeric value encountered C:\xampp\htdocs\siddharth_application_23mayPO\application\third_party\dompdf\include\page_frame_decorator.cls.php 464 +ERROR - 2017-05-30 10:17:50 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 10:17:50 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 10:17:50 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 10:17:51 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 10:17:51 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 10:17:51 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 10:19:00 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given C:\xampp\htdocs\siddharth_application\system\database\drivers\mysqli\mysqli_result.php 38 +ERROR - 2017-05-30 10:22:08 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 10:22:08 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 10:22:08 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 10:22:08 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 10:22:08 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 10:22:09 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 10:22:32 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 10:22:32 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 10:22:32 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 10:22:32 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 10:22:32 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 10:22:32 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 10:23:46 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 10:23:46 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 10:23:47 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 10:23:47 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 10:23:47 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 10:23:47 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 10:26:06 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 10:26:06 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 10:26:07 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 10:26:07 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 10:26:07 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 10:26:07 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 10:26:38 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 10:26:39 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 10:26:39 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 10:26:39 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 10:26:40 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 10:26:40 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 10:26:59 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 10:26:59 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 10:26:59 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 10:26:59 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 10:26:59 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 10:26:59 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 10:27:09 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 10:27:09 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 10:27:10 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 10:27:10 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 10:27:10 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 10:27:10 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 10:27:16 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 10:27:16 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 10:27:16 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 10:27:16 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 10:27:16 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 10:27:16 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 10:29:20 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 10:29:20 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 10:29:20 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 10:29:20 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 10:29:20 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 10:29:20 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 10:31:39 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 10:31:39 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 10:31:39 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 10:31:39 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 10:31:39 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 10:31:39 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 10:32:27 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 10:32:27 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 10:32:27 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 10:32:27 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 10:32:27 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 10:32:27 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 10:34:38 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 10:34:38 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 10:34:38 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 10:34:38 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 10:34:38 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 10:34:38 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 11:03:40 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 11:03:40 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 11:03:40 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 11:03:40 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 11:03:40 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 11:03:40 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 11:04:13 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 11:04:13 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 11:04:13 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 11:04:13 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 11:04:13 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 11:04:14 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 11:05:23 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 11:05:24 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 11:05:24 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 11:05:24 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 11:05:24 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 11:05:24 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 11:05:49 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 11:05:49 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 11:05:49 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 11:05:49 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 11:05:49 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 11:05:49 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 11:06:13 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 11:06:13 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 11:06:13 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 11:06:13 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 11:06:13 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 11:06:13 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 11:06:46 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 65 +ERROR - 2017-05-30 11:06:46 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 95 +ERROR - 2017-05-30 11:06:46 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 96 +ERROR - 2017-05-30 11:06:47 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 97 +ERROR - 2017-05-30 11:06:47 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 143 +ERROR - 2017-05-30 11:06:47 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 171 +ERROR - 2017-05-30 11:07:27 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:07:27 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:07:27 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:07:27 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:07:27 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:07:27 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:07:27 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:08:28 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:08:28 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:08:29 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:08:29 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:08:29 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:08:29 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:08:29 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:09:51 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:09:51 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:09:51 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:09:51 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:09:51 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:09:51 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:09:51 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:09:58 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:09:58 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:09:58 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:09:58 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:09:58 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:09:58 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:09:58 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:10:03 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:10:03 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:10:03 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:10:03 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:10:03 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:10:03 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:10:03 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:11:02 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:11:02 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:11:02 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:11:02 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:11:02 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:11:02 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:11:02 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:12:34 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:12:34 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:12:34 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:12:34 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:12:34 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:12:34 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:12:35 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:12:44 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:12:44 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:12:44 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:12:44 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:12:44 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:12:44 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:12:44 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:13:44 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:13:44 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:13:44 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:13:44 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:13:44 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:13:44 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:13:44 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:15:14 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:15:14 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:15:14 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:15:14 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:15:14 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:15:14 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:15:14 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:16:44 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:16:44 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:16:44 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:16:44 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:16:44 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:16:44 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:16:44 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:16:54 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:16:54 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:16:54 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:16:54 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:16:54 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:16:54 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:16:54 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:17:11 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:17:11 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:17:11 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:17:11 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:17:11 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:17:11 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:17:11 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:17:49 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:17:49 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:17:49 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:17:49 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:17:49 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:17:49 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:17:49 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:20:41 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:20:41 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:20:41 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:20:41 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:20:41 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:20:41 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:20:42 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:21:03 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:21:03 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:21:03 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:21:03 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:21:03 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:21:03 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:21:03 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:21:17 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:21:17 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:21:17 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:21:18 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:21:18 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:21:18 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:21:18 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:22:09 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:22:09 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:22:09 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:22:09 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:22:09 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:22:09 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:22:09 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:32:45 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 85 +ERROR - 2017-05-30 11:32:46 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:32:46 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:32:46 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:32:46 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:32:46 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:32:46 --> Severity: Notice --> Undefined variable: Suplist C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 3342 +ERROR - 2017-05-30 11:33:27 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:33:27 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:33:27 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:33:27 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:33:27 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:35:35 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:35:35 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:35:35 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:35:35 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:35:35 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:35:35 --> Severity: Notice --> Undefined variable: SupAddress C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 970 +ERROR - 2017-05-30 11:35:56 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:35:56 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:35:56 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:35:56 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:35:56 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:39:02 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application_Emergpo\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:39:02 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application_Emergpo\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:39:02 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application_Emergpo\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:39:02 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application_Emergpo\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:39:02 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application_Emergpo\application\views\alterpurchaseorder.php 191 +ERROR - 2017-05-30 11:46:01 --> Severity: Notice --> Undefined variable: RequistionDetails C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 115 +ERROR - 2017-05-30 11:46:01 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 116 +ERROR - 2017-05-30 11:46:01 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 117 +ERROR - 2017-05-30 11:46:01 --> Severity: Notice --> Undefined variable: MaterialList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 163 +ERROR - 2017-05-30 11:46:01 --> Severity: Notice --> Undefined variable: CostList C:\xampp\htdocs\siddharth_application\application\views\alterpurchaseorder.php 191 diff --git a/application/models/purchaseorder_model.php b/application/models/purchaseorder_model.php index baa1107e..e11c7b9a 100644 --- a/application/models/purchaseorder_model.php +++ b/application/models/purchaseorder_model.php @@ -16,7 +16,7 @@ class purchaseorder_model extends CI_Model $this->db->join('T_Status Stat', 'Stat.StatusCode = POMast.Status'); $this->db->join('T_PurchaseOrder_LineItem LineItem', 'POMast.PONO = LineItem.PONO'); $this->db->join('T_Requestion_Master Req', 'Req.ReqNo = LineItem.ReqNo'); - + // print_r( $this->db->last_query()); $query = $this->db->get(); return count($query->result()); @@ -38,9 +38,9 @@ class purchaseorder_model extends CI_Model $this->db->join('T_Status Stat', 'Stat.StatusCode = POMast.Status'); $this->db->join('T_PurchaseOrder_LineItem LineItem', 'POMast.PONO = LineItem.PONO'); $this->db->join('T_Requestion_Master Req', 'Req.ReqNo = LineItem.ReqNo'); - + $query = $this->db->get(); - + //print_r( $this->db->last_query()); $result = $query->result(); return $result; } @@ -75,7 +75,34 @@ class purchaseorder_model extends CI_Model return $query->result(); } - +/** + * This function is used to get the Raw Material information + * @return array $result : This is result of the query + */ + function getRawPOMaterialList($ReqNo,$IsArray='') + { + + $result = $this->db-> query("CALL P_GET_REQUISTIONLIST('".$ReqNo."')") or die(mysql_error()); + + $result ->next_result(); + + //print_r($this->db->last_query()); + + if ($result->num_rows > 0) + { + //echo 'PO Line item Inserted successfully'; + if($IsArray != '') + { + return $result->result_array(); + } + else + { + return $result->result(); + } + } + + + } /** * This function is used to get the Raw Material information * @return array $result : This is result of the query @@ -90,7 +117,7 @@ class purchaseorder_model extends CI_Model $this->db->where_in('Req.ReqNo', $ReqNoList); $query = $this->db->get(); - + //print_r($this->db->last_query()); return $query->result(); } /** @@ -126,12 +153,12 @@ class purchaseorder_model extends CI_Model $subQuery ='select BudgetAmount, (select ifnull(sum(TotalOrderValue),0) as Totalvalue from T_PurchaseOrder_Master PO join T_PurchaseOrder_LineItem Item on - Item.PONO = PO.PONO where Item.CostCenterCode=? )as val + Item.PONO = PO.PONO join T_Requestion_Master mast on mast.ReqNo = Item.ReqNo where Item.CostCenterCode=? and mast.ReqType=?)as Totalvalue from T_CostCenter_Budget Bud where Bud.CostCenterCode=? and BudgetYear = ? and BudgetType =?'; - $query = $this->db->query($subQuery,array($CostCode,$CostCode,$Year,$BudgetType)); - + $query = $this->db->query($subQuery,array($CostCode,$BudgetType,$CostCode,$Year,$BudgetType)); + //print_r($this->db->last_query()); return $query->result_array(); } @@ -148,9 +175,9 @@ class purchaseorder_model extends CI_Model $this->db->join('T_Employee_Details emp', 'mast.Requestedby = emp.EmpID'); $this->db->join('T_DepartmentDetails Dept', 'emp.Departmentcode = Dept.DEPCode'); $this->db->where_in('mast.ReqNo', $ReqNoList); - + $query = $this->db->get(); - + //print_r($this->db->last_query()); return $query->result(); } /** @@ -219,7 +246,7 @@ class purchaseorder_model extends CI_Model function getRequistionNoFromPO($PONO='') { - $this->db->select('ReqNo'); + $this->db->select('ReqNo,'); $this->db->from('T_PurchaseOrder_LineItem'); if($PONO != '') { @@ -251,9 +278,22 @@ class purchaseorder_model extends CI_Model return $query->result(); } - /** - * This function is used to get the Purchase order Type + * This function is used to get the Company information from T_Company_Details table + * @return array $result : This is result of the query + */ + function getCompanyInformation() + { + + $this->db->select('CompanyName,Address'); + $this->db->from('T_Company_Details'); + + $query = $this->db->get(); + + return $query->result(); + } + /** + * This function is used to get the Employee List * @return array $result : This is result of the query */ function getAllEmployees() @@ -265,7 +305,19 @@ class purchaseorder_model extends CI_Model return $query->result(); } - + /** + * This function is used to get the Employee List + * @return array $result : This is result of the query + */ + function getLastCreatedPODate() + { + $this->db->select('max(PODate) as PODate'); + $this->db->from('T_PurchaseOrder_Master'); + $query = $this->db->get(); + + return $query->result(); + } + /** * This function is used to add New Purchase order to the system @@ -395,6 +447,70 @@ class purchaseorder_model extends CI_Model return $query->result(); + } + + // This Method to get the Service PO Child Details for Edit the Item + function GetServicePurchaseOrderDetailsForPrint($PONO = '') + { + + $subQuery ='SELECT distinct LineItem.LineItemNo,ReqNo,Mat.MaterialCode,Mat.MaterialName,Mat.UOM, + Quantity,Rate,ROUND((Quantity *Rate),2 ) as BasicValue ,ROUND((ServiceTax + EducessTax + SecHigherEducessTax + KrishiKalyantax + SwachhBharattax),2)as Taxamount + ,TotalValue,ServiceTax,EducessTax,SecHigherEducessTax,KrishiKalyantax,SwachhBharattax,CostCenterCode + ,sup.SupplierName,sup.Address,POMaster.DeliveryAddress,POMaster.DeliveryDate,POMaster.PODate,POMaster.PONO,POMaster.ServiceDescription FROM T_PurchaseOrder_LineItem LineItem + join T_MaterialMaster Mat on Mat.MaterialCode = LineItem.MaterialCode + join T_Service_Tax Tax on Tax.LineItemNo = LineItem.LineItemNo + join T_PurchaseOrder_Master POMaster on POMaster.PONO = LineItem.PONO + join T_SupplierDetailsN sup on sup.SupplierID = POMaster.SupplierID + where LineItem.PONO =?'; + + $query = $this->db->query($subQuery,array($PONO)); + + return $query->result(); + + + } + + // This Method to get the Revenue PO Child Details for Edit the Item + function GetRevenuePurchaseOrderDetails($PONO = '') + { + + $subQuery ='SELECT distinct LineItem.LineItemNo,Req.ReqNo,Mat.MaterialCode,Mat.MaterialName,Mat.UOM,Quantity,Rate,Req.Status,ROUND((Quantity *Rate),2 ) as BasicValue , ROUND(((AfterPackagingValue + AfterFreightValue + AfterExciseDuty + AfterVAT + AfterCST + AfterGST + AfterOtherTaxes + Insurance) - AfterDiscount ),2)as Taxamount ,TotalValue,Tax.*,CostCenterCode,Dept.DepartmentName + FROM T_PurchaseOrder_LineItem LineItem + join T_MaterialMaster Mat on Mat.MaterialCode = LineItem.MaterialCode + join T_Revenue_Tax Tax on Tax.LineItemNo = LineItem.LineItemNo + join T_Requestion_Master Req on Req.ReqNo = LineItem.ReqNo + join T_Employee_Details emp on Req.Requestedby = emp.EmpID + join T_DepartmentDetails Dept on emp.Departmentcode = Dept.DEPCode + where LineItem.PONO =?'; + + $query = $this->db->query($subQuery,array($PONO)); + + return $query->result(); + + + } + + // This Method to get the Revenue PO Child Details for Edit the Item + function GetRevenuePurchaseOrderDetailsForPDF($PONO = '') + { + + $subQuery ='SELECT distinct LineItem.LineItemNo,ReqNo,Mat.MaterialCode,Mat.MaterialName, + Mat.UOM,Quantity,Rate,ROUND((Quantity *Rate),2 ) as BasicValue , + ROUND(((AfterPackagingValue + AfterFreightValue + AfterExciseDuty + AfterVAT + AfterCST + + AfterGST + AfterOtherTaxes + Insurance)) ,2)as Taxamount , + TotalValue,Tax.*,CostCenterCode , POMaster.*,sup.SupplierName,sup.Address + FROM T_PurchaseOrder_LineItem LineItem + join T_MaterialMaster Mat on Mat.MaterialCode = LineItem.MaterialCode + join T_Revenue_Tax Tax on Tax.LineItemNo = LineItem.LineItemNo + join T_PurchaseOrder_Master POMaster on POMaster.PONO = LineItem.PONO + join T_SupplierDetailsN sup on sup.SupplierID = POMaster.SupplierID + where LineItem.PONO =?'; + + $query = $this->db->query($subQuery,array($PONO)); + + return $query->result(); + + } // To Update the PO function updatePOMaster($PONO,$PODetails) @@ -405,12 +521,12 @@ class purchaseorder_model extends CI_Model return TRUE; } /** - * This function is used to check the Request is in Draft status + * This function is used to check the Line Item is already available in the database * @return array $result : This is result of the query */ function LineItemExists($LineItemNo) { - $this->db->select('LineItemNo'); + $this->db->select('LineItemNo,TaxID'); $this->db->from('T_Service_Tax'); $this->db->where('LineItemNo ',$LineItemNo ); //$this->db->where('Requestedby ',$ReqBy ); @@ -421,7 +537,21 @@ class purchaseorder_model extends CI_Model return $query->result_array(); } } - + /** + * This function is used to check the Revenue Line Item is already available in the database + * @return array $result : This is result of the query + */ + function LineItemExistsinRevenueTax($LineItemNo) + { + $this->db->select('LineItemNo'); + $this->db->from('T_Revenue_Tax'); + $this->db->where('LineItemNo ',$LineItemNo ); + $query = $this->db->get(); + + if ($query->num_rows > 0) { + return $query->result_array(); + } + } // To Update the PO Line Item function updatePOLineItem($PONO,$LineItemNo,$PODetails) { @@ -431,12 +561,25 @@ class purchaseorder_model extends CI_Model return TRUE; } - /*// To Update the PO Line Item */ + /*// To Update the Service Tax Item */ function updateServiceTax($LineItemNo,$PODetails) { - $this->db->where('LineItemNo', $LineItemNo); + + $this->db->where('LineItemNo', $LineItemNo); + $this->db->update('T_Service_Tax', $PODetails); - $this->db->update('T_PurchaseOrder_LineItem', $PODetails); + // print_r($this->db->last_query()); + + return TRUE; + } + + /*// To Update the Revenue Tax Item */ + function updateRevenueTax($LineItemNo,$PODetails) + { + $this->db->where('LineItemNo', $LineItemNo); + $this->db->update('T_Revenue_Tax', $PODetails); + + // print_r($this->db->last_query()); return TRUE; } @@ -493,7 +636,7 @@ class purchaseorder_model extends CI_Model JOIN T_Employee_Details EMP ON REQ.Requestedby = EMP.EmpID JOIN T_DepartmentDetails DEPT ON EMP.Departmentcode = DEPT.DEPCode JOIN T_Status STAT on REQ.Status = STAT.StatusCode - where REQ.Status NOT IN (?,?,?,?)'; + where REQ.Status NOT IN (?,?,?,?,?)'; $appendQuery = $subQuery ; @@ -501,7 +644,7 @@ class purchaseorder_model extends CI_Model { $appendQuery .= ' AND DEPT.DEPCode=? AND STAT.StatusCode=? AND ReqDate >= ? AND ReqDate <= ?'; - $query = $this->db->query($appendQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED,$Depid ,$Status,$FromDate,$ToDate)); + $query = $this->db->query($appendQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED,REQ_PO_CREATED,$Depid ,$Status,$FromDate,$ToDate)); //print_r($this->db->last_query()); return $query->result_array(); } @@ -509,7 +652,7 @@ class purchaseorder_model extends CI_Model { $appendQuery .= ' AND DEPT.DEPCode=?'; - $query = $this->db->query($appendQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED,$Depid)); + $query = $this->db->query($appendQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED,REQ_PO_CREATED,$Depid)); //print_r($this->db->last_query()); return $query->result_array(); } @@ -517,7 +660,7 @@ class purchaseorder_model extends CI_Model { $appendQuery .= ' AND STAT.StatusCode=?'; - $query = $this->db->query($appendQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED,$Status)); + $query = $this->db->query($appendQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED,REQ_PO_CREATED,$Status)); //print_r($this->db->last_query()); return $query->result_array(); } @@ -525,7 +668,7 @@ class purchaseorder_model extends CI_Model { $appendQuery .= ' AND ReqDate >= ? AND ReqDate <= ?'; - $query = $this->db->query($appendQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED,$FromDate,$ToDate)); + $query = $this->db->query($appendQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED,REQ_PO_CREATED,$FromDate,$ToDate)); //print_r($this->db->last_query()); return $query->result_array(); } @@ -533,7 +676,7 @@ class purchaseorder_model extends CI_Model { $appendQuery .= ' AND DEPT.DEPCode=? AND STAT.StatusCode=?'; - $query = $this->db->query($appendQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED,$Depid ,$Status)); + $query = $this->db->query($appendQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED,REQ_PO_CREATED,$Depid ,$Status)); // print_r($this->db->last_query()); return $query->result_array(); } @@ -541,7 +684,7 @@ class purchaseorder_model extends CI_Model { $appendQuery .= ' AND DEPT.DEPCode=? AND ReqDate >= ? AND ReqDate <= ?'; - $query = $this->db->query($appendQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED,$Depid ,$FromDate,$ToDate)); + $query = $this->db->query($appendQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED,REQ_PO_CREATED,$Depid ,$FromDate,$ToDate)); //print_r($this->db->last_query()); return $query->result_array(); } @@ -549,19 +692,76 @@ class purchaseorder_model extends CI_Model { $appendQuery .= ' AND STAT.StatusCode=? AND ReqDate >= ? AND ReqDate <= ?'; - $query = $this->db->query($appendQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED,$Status ,$FromDate,$ToDate)); + $query = $this->db->query($appendQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED,REQ_PO_CREATED,$Status ,$FromDate,$ToDate)); // print_r($this->db->last_query()); return $query->result_array(); } else { - $query = $this->db->query($subQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED)); + $query = $this->db->query($subQuery,array(REQ_DRAFT,REQ_PENDING_APPROVAL,REQ_DELETED,REQ_REJECTED,REQ_PO_CREATED)); //print_r($this->db->last_query()); return $query->result(); } } + function UpdateRequistItemStatus() + { + $query = $this->db->query("update T_Requestion_Details REQ + JOIN T_PurchaseOrder_LineItem line ON REQ.ReqNo = line.ReqNo + JOIN T_PurchaseOrder_Master PO ON PO.PONO = line.PONO + set REQ.Status = CASE WHEN REQ.Quantity = line.Quantity THEN 'ST022' WHEN REQ.Quantity > line.Quantity THEN 'ST023' ELSE 'ST003' END , + REQ.updatedOn= CURRENT_TIMESTAMP + where PO.Status ='".PO_CREATED."'"); + + //$query ->next_result(); + + } + function UpdateRequistionStatus() + { + $result = $this->db-> query("CALL P_UPDATE_REQUISTIONSTATUS()") or die(mysql_error()); + + $result ->next_result(); + + } + /** + * This function is used to delete the Line item from details into Database + * @return array $result : This is result of the query + */ + function DeletePOLineItem( $LineItem='',$ReqNo='',$MaterialCode='') + { + $this->db->where('LineItemNo', $LineItem); + $this->db->where('ReqNo', $ReqNo); + $this->db->where('MaterialCode', $MaterialCode); + $this->db->delete('T_PurchaseOrder_LineItem'); + + return TRUE; + } + + /** + * This function is used to delete the Revenue item from details into Database + * @return array $result : This is result of the query + */ + function DeletePORevenueTax( $LineItem='') + { + $this->db->where('LineItemNo', $LineItem); + $this->db->delete('T_Revenue_Tax'); + + return TRUE; + } + + /** + * This function is used to delete Service Tax from details into Database + * @return array $result : This is result of the query + */ + function DeletePOServiceTax( $LineItem='') + { + $this->db->where('LineItemNo', $LineItem); + $this->db->delete('T_Service_Tax'); + + return TRUE; + } + } \ No newline at end of file diff --git a/application/models/requistion_model.php b/application/models/requistion_model.php index 9af9d9ca..58d893b4 100644 --- a/application/models/requistion_model.php +++ b/application/models/requistion_model.php @@ -9,7 +9,7 @@ class requistion_model extends CI_Model */ function getSupplierName() { - $this->db->select('SupplierID, SupplierName,Address'); + $this->db->select('SupplierID, SupplierName,ADeleteRequistionLineItemddress'); $this->db->from('T_SupplierDetailsN'); //$this->db->where('roleId !=', 1); $query = $this->db->get(); @@ -398,9 +398,11 @@ class requistion_model extends CI_Model $subQuery = 'select distinct ReqNo,Status,mast.CreatedDate,Requestedby,mast.Comments,st.StatusName from T_Requestion_Master mast join T_Employee_Details emp on mast.Requestedby = emp.EmpID - join T_DepartmentDetails Dept on emp.Departmentcode = Dept.HeadDept + join T_DepartmentDetails Dept on emp.Departmentcode = Dept.DEPCode join T_Status st on st.StatusCode = mast.Status - where status not in(?,?,?) and emp.Departmentcode = (select HeadDept from T_DepartmentDetails where DEPCode = (select Departmentcode from T_Employee_Details where EmpID=(select EmpID from tbl_users where userId=?)))'; + where status not in(?,?,?) and emp.Departmentcode in (select DEPCode from T_DepartmentDetails where HeadDept= + (select HeadDept from T_DepartmentDetails where DEPCode = (select Departmentcode from T_Employee_Details where + EmpID=(select EmpID from tbl_users where userId=?))))'; $subQuery1 = $subQuery; $query =''; @@ -429,7 +431,7 @@ class requistion_model extends CI_Model $query = $this->db->query($subQuery, array(REQ_DRAFT,REQ_DELETED,REQ_REJECTED,$UserID)); } - // print_r($this->db->last_query()); + //print_r($this->db->last_query()); return $query->result(); } diff --git a/application/third_party/dompdf/lib/fonts/log.htm b/application/third_party/dompdf/lib/fonts/log.htm index 5d7d56be..c3f64e57 100644 --- a/application/third_party/dompdf/lib/fonts/log.htm +++ b/application/third_party/dompdf/lib/fonts/log.htm @@ -1,4 +1,4 @@ -2,048 KB 474.9031 ms
+4,096 KB 478.2550 ms

A PHP Error was encountered

@@ -7,4 +7,265 @@

Filename: include/style.cls.php

Line Number: 948

+
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+ +
+ +

A PHP Error was encountered

+ +

Severity: Warning

+

Message: A non-numeric value encountered

+

Filename: include/page_frame_decorator.cls.php

+

Line Number: 464

+
\ No newline at end of file diff --git a/application/views/EditservicePurchaseorder.php b/application/views/EditservicePurchaseorder.php index f10e9faf..23aebb1a 100644 --- a/application/views/EditservicePurchaseorder.php +++ b/application/views/EditservicePurchaseorder.php @@ -15,7 +15,14 @@ $TotalSummary = 0.0; $TotalBasicAmount = 0.0; $ServiceDescription = ''; - +$MaxPoDate = ''; +if(!empty($MaxPODate)) +{ + foreach ($MaxPODate as $date) + { + $MaxPoDate = $date->PODate; + } +} if(!empty($POMaster)) { foreach ($POMaster as $Req) @@ -23,8 +30,12 @@ if(!empty($POMaster)) $SupId = $Req->SupplierID; $SupName = $Req->SupplierName; $Address = $Req->Address; - $PODate = $Req->PODate; - $Deliverydt =$Req->DeliveryDate; + $pdt = new DateTime($Req->PODate); + $PODate = $pdt->format('Y-m-d'); + + $Ddt = new DateTime($Req->DeliveryDate); + $Deliverydt = $Ddt->format('Y-m-d'); + $DeliveryAddress =$Req->DeliveryAddress; $POStatus = $Req->StatusCode; $PONO = $Req->PONO; @@ -38,8 +49,19 @@ if(!empty($POMaster)) +
'form-label-left ServicePO ','name' => 'ServicePO','id' => 'ServicePO'); @@ -557,19 +617,19 @@ function clearEditTaxField() echo form_open($this->config->base_url().'/purchaseorder/addPO/',$attributes); ?>
+

Siddharth Industries - Edit Service Purchase Order -

-
-
-
-
- -
+
+
+
+ + - 'Selected Requisition Numbers'); if(!empty($ReqList)) @@ -582,39 +642,13 @@ function clearEditTaxField() echo form_multiselect('RequistionNo', $options,set_value('RequistionNo'),'id="RequistionNo"' , 'required="true"'); ?> -
-
-
- -
- 'PODate','value' => set_value('PODate',$PODate),'id'=>'PODate', 'class' => 'form-control datePicker' ,'required' => 'true'); - echo form_input($data); - ?> -
-
-
- -
- - 'POType','value' => set_value('POType',SERVICE),'id'=>'POType', 'class' => 'form-control' ,'readonly' => 'true'); - echo form_input($data); - ?> -
- - -
- - -
- - -
-
- -
- +
+
+
+ + 'Select Supplier'); //print_r( $options); @@ -631,43 +665,69 @@ function clearEditTaxField() echo form_dropdown('drpSupplier', $options,set_value('drpSupplier',$SupId ),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2'); ?> -
-
- -
- + +
+

+
'SupAddress','value' => set_value('SupAddress',$Address),'id'=>'SupAddress', 'class' => 'form-control' ,'readonly' => 'true',"height" => "10px"); + $data = array('name' => 'SupAddress','value' => set_value('SupAddress',$Address),'id'=>'SupAddress', 'class' => 'form-control' ,'readonly' => 'true','rows' => '3', 'cols' => '40'); echo Form_textarea($data); ?>
-
-
- +
+
+
+
+ +
+ + 'POType','value' => set_value('POType',SERVICE),'id'=>'POType', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+
'DeliveryAddr','value' => set_value('DeliveryAddr',$DeliveryAddress),'id'=>'DeliveryAddr', 'class' => 'form-control' ,'required' => 'true'); + $data = array('name' => 'DeliveryAddr','value' => set_value('DeliveryAddr',$DeliveryAddress),'id'=>'DeliveryAddr', 'class' => 'form-control' ,'required' => 'true', 'rows' => '3', 'cols' => '40'); echo Form_textarea($data); - ?> + ?> +
-
-
- +
+
+
+
+ +
+ 'PODate','value' => set_value('PODate',$PODate),'id'=>'PODate', 'class' => 'form-control' ,'required' => 'true','onkeypress'=>'return false;'); + echo form_input($data); + ?> + +
+
+
+
'Deliverydt','value' => set_value('Deliverydt',$Deliverydt),'id'=>'Deliverydt', 'class' => 'form-control datePicker' ,'required' => 'true'); + $data = array('name' => 'Deliverydt','value' => set_value('Deliverydt',$Deliverydt),'id'=>'Deliverydt', 'class' => 'form-control' ,'required' => 'true','onkeypress'=>'return false;'); echo form_input($data); - ?> + ?>
-
-
-
-
+
+
+ +
+
+
- -
+ +
@@ -679,8 +739,7 @@ function clearEditTaxField()
- - - - - - - - - - - - - - +
+
SNoRequisition NoItem NameQuantityUOMRateBasic AmountTax AmountTotal Order AmountAction
+ + + + + + + + + + + + + + + + - -
SNoRequisition NoItem NameQuantityUOMRateBasic AmountTax AmountTotal Order AmountAction
-
-
-
-
- 'txtSpcialInstruction','value' => set_value('txtSpcialInstruction',$ServiceDescription),'id'=>'txtSpcialInstruction', 'class' => 'form-control' ); - echo form_textarea($data); - ?> -
-
-
-
-
-
- - 'txtTotBasicAmount','value' => set_value('txtTotBasicAmount',$TotalBasicAmount),'id'=>'txtTotBasicAmount', 'class' => 'form-control' ,'readonly' => 'true'); + +
+ + +
+
+
+ + 'txtTotBasicAmount','value' => set_value('txtTotBasicAmount',number_format($TotalBasicAmount,2)),'id'=>'txtTotBasicAmount', 'class' => 'form-control' ,'readonly' => 'true'); echo form_input($data); ?> - -
-
-
-
-
-
- - -
-
- - +
+ + 'txtTotalServiceTax','value' => set_value('txtTotalServiceTax',$TotalServiceTax),'id'=>'txtTotalServiceTax', 'class' => 'form-control' ,'readonly' => 'true'); echo form_input($data); ?> - -
-
-
-
-
- -
-
- - + + 'txtTotalEducess','value' => set_value('txtTotalEducess',$TotalEducessTax),'id'=>'txtTotalEducess', 'class' => 'form-control' ,'readonly' => 'true'); echo form_input($data); ?> - -
-
-

-
-
- - -
-
- - +
+
+
+ + 'txtTotHigherEdu','value' => set_value('txtTotHigherEdu',$TotalSecHigherEducessTax),'id'=>'txtTotHigherEdu', 'class' => 'form-control' ,'readonly' => 'true'); echo form_input($data); ?> - -
-
-
-
-
- - -
-
- - + + 'txtTotalKrishiKalyan','value' => set_value('txtTotalKrishiKalyan',$TotalKrishiKalyantax),'id'=>'txtTotalKrishiKalyan', 'class' => 'form-control' ,'readonly' => 'true'); echo form_input($data); ?> - -
-
- -
-
-
- - -
-
- - + + 'txtTotSwachhBharat','value' => set_value('txtTotSwachhBharat',$TotalSwachhBharattax),'id'=>'txtTotSwachhBharat', 'class' => 'form-control' ,'readonly' => 'true'); echo form_input($data); ?> - -
-
-
- -
-
-
-
- - -
-
- - 'txtTotalOrderValueSummary','value' => set_value('txtTotalOrderValueSummary',$TotalSummary),'id'=>'txtTotalOrderValueSummary', 'class' => 'form-control' ,'readonly' => 'true'); - echo form_input($data); - ?> - -
-
+
+

-
-
- - - - - -   Save -   Submit - - - -

-
+
+
+ 'txtTotalOrderValueSummary','value' => set_value('txtTotalOrderValueSummary',$TotalSummary),'id'=>'txtTotalOrderValueSummary', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> + +
+
+
+
+ 'txtSpcialInstruction','value' => set_value('txtSpcialInstruction',$ServiceDescription),'id'=>'txtSpcialInstruction', 'class' => 'form-control', 'rows' => '4', 'cols' => '40' ); + echo form_textarea($data); + ?>
-
-
- -
-
-
+
+
+

+
+ + + + +   Save +   Submit + + + +

+
+
+
+

+
+ +
+
+ var NilType = ''; + var PercentageType = ''; + var PackagingCalculation = ''; + var ExciseCalculation = ''; + var StateTaxCheck = ''; + var VatCalculation = ''; + var CSTCalculation = ''; + var RequistQuantity = ''; + + $(function() { + + + $("#PODate").datepicker({ + //minDate : d, + maxDate : 'now', + dateFormat: 'mm/dd/yy',changeMonth: true, changeYear: true,yearRange: '-100:+0' + }); + $("#Deliverydt").datepicker({ + minDate : 'now', + dateFormat: 'mm/dd/yy',changeMonth: true, changeYear: true,yearRange: '0:+10' + }); + + + + + /* $('#drpSupplier').change(function() { + + var id = $('#drpSupplier').val(); + $("#SupAddress").val(''); + + if(id != '0') + { + var y = ; + + + $.each(y, function(idx, obj) { + if(obj.SupplierID === id) + { + $("#SupAddress").val(obj.Address); + + } + + }); + + } + else + { + alert('Please select the SupplierID'); + return false; + } + + }); + + $('#ReqNo').change(function() { + + var id = $('#ReqNo').val(); + $("#deptName").val(''); + $("#CostCenter").empty(); + $("#MaterialCode").empty(); + resetTaxField(); + if(id != '0') + { + var y = ; + var cost = ; + var Material = ; + + // For Binding DepartmentName + $.each(y, function(idx, obj) { + if(obj.ReqNo === id) + { + $("#deptName").val(obj.DepartmentName); + + } + }); + // For Binding Cost center for the selected department + $("#CostCenter").append( $('').val("0").html("Select Cost Center") ); + $.each(cost, function(idx, obj) { + if(obj.ReqNo === id) + { + $("#CostCenter").append( $('').val(obj.CostCenterCode).html(obj.CostCenterCode + "-" + obj.CostCenterName) ); + + } + + }); + // For Binding Material list center for the selected Requistion Number + $("#MaterialCode").append( $('').val("0").html("Select Material Code") ); + $.each(Material, function(idx, obj) { + if(obj.ReqNo === id) + { + $("#MaterialCode").append( $('').val(obj.MaterialCode).html(obj.MaterialCode + "-" + obj.MaterialName) ); + + } + + }); + + } + else + { + alert('Please select the Requisition Number'); + return false; + } + + }); + $('#MaterialCode').change(function() { + + var id = $('#MaterialCode').val(); + RequistQuantity = ''; + resetTaxField(); + if(id != '0') + { + var y = ; + + + $.each(y, function(idx, obj) { + if(obj.MaterialCode === id) + { + $("#ItemName").val(obj.MaterialName); + $("#UOM").val(obj.UOM); + $("#Quantity").val(obj.Quantity); + RequistQuantity = obj.Quantity; + } + }); + } + else + { + alert('Please select the MaterialCode'); + return false; + } + + }); + + $('#CostCenter').change(function() { + + var id = $('#CostCenter').val(); + $("#AvlBudAmt").val(''); + + if(id != '0') + { + var cost = ; + + $.each(cost, function(idx, obj) { + if(obj.CostCenterCode === id) + { + $("#AvlBudAmt").val(obj.BudgetAmount); + } + + }); + } + else + { + alert('Please select the MaterialCode'); + return false; + } + + }); */ + /* Revenue Tax calcualation */ + + $('#DiscountType').change(function() { + selValue = $("#DiscountType").val(); + $('#txtDiscount').val(''); + $('#txtAfterDiscount').val(''); + if (selValue == NilType) + { + + $('#txtDiscount').attr('readonly', 'true'); + $('#txtDiscount').val('0.00'); + $('#txtAfterDiscount').val('0.00'); + + } + else + { + $('#txtDiscount').removeAttr( 'readonly','true' ); + $('#txtDiscount').val(''); + $('#txtAfterDiscount').val(''); + } + + }); + + $('#PackagingType').change(function() { + $('#txtPackaging').val(''); + $('#txtAfterPackaging').val(''); + selValue = $("#PackagingType").val() ; + if(selValue == PercentageType) + { + var PackagingCalculation = ''; + $('#packagingcalmodel').modal('show'); + $('#txtPackaging').removeAttr( 'readonly','true' ); + } + else + { + if (selValue == NilType) + { + + $('#txtPackaging').attr('readonly', 'true'); + $('#txtPackaging').val('0.00'); + } + else + { + $('#txtPackaging').removeAttr( 'readonly','true' ); + } + } + + }); + $('#txtExciseDuty').change(function() { + + if(ExciseCalculation == '') + { + $('#ExciseDutyCalModel').modal('show'); + } + + }); + $('#txtVat').change(function() { + + if(VatCalculation == '') + { + $('#VatCalModel').modal('show'); + } + + }); + $('#txtCST').change(function() { + + if(CSTCalculation == '') + { + $('#CSTCalModel').modal('show'); + } + + }); + $('#drpFreight').change(function() { + + + selValue = $("#drpFreight").val() ; + + if (selValue == NilType) + { + + $('#txtFreight').attr('readonly', 'true'); + $('#txtFreight').val('0.00'); + + } + else + { + $('#txtFreight').removeAttr( 'readonly','true' ); + $('#txtFreight').val(''); + + + } + + }); + }); + + /* + * To calcuate the Discount */ + function calculateDiscount() + { + if($('#MaterialCode').val() == "0") + { + alert('Please Select the Material Code'); + $('#MaterialCode').focus(); + return false; + } + else if($('#Rate').val() == '') + { + alert('Please Enter the Rate value'); + $('#Rate').focus(); + return false; + } + if($('#Rate').val() != '' && $('#MaterialCode').val() != "0" ) + { + + var basicValue = parseFloat($('#txtBasicValue').val()); + var DiscountType =$("#DiscountType").val(); + + if(DiscountType == "0") + { + alert('Please Select the discount Type'); + $('#txtDiscount').val(''); + $("#DiscountType").focus(); + } + else if ($('#txtDiscount').val() != '' && $('#txtDiscount').val() != '0') + { + var AfterDiscount = 0.0; + var Discountval = parseFloat($('#txtDiscount').val()); + if(DiscountType == PercentageType) + { + + AfterDiscount = ; + + } + else if(DiscountType == NilType ) + { + AfterDiscount = "0.00"; + } + else + { + AfterDiscount = ; + } + var discount = parseFloat(AfterDiscount).toFixed(2); + $('#txtAfterDiscount').val(discount); + } + else + { + $('#txtAfterDiscount').val("0.00"); + } + } + calculateTotalValue(); + } + /* + * To calcuate the Packaging */ + function calculatePackaging() + { + if($('#MaterialCode').val() == "0") + { + alert('Please Select the Material Code'); + $('#MaterialCode').focus(); + return false; + } + else if($('#Rate').val() == '') + { + alert('Please Enter the Rate value'); + $('#Rate').focus(); + return false; + } + else if($('#txtAfterDiscount').val() == '') + { + alert('Please Enter the Discount value'); + $('#DiscountType').focus(); + return false; + } + else + { + var AfterDiscount =parseFloat($('#txtAfterDiscount').val()); + var basicValue = parseFloat($('#txtBasicValue').val()); + + var PackagingType =$("#PackagingType").val(); + + if(PackagingType == "0") + { + alert('Please select the Packaging Type'); + $('#txtPackaging').val(''); + $("#PackagingType").focus(); + } + + else if($('#txtPackaging').val() != '' && $('#txtPackaging').val() !='0') + { + var Packagingvalue = parseFloat($('#txtPackaging').val()); + var AfterPackaging = 0.0; + + if(PackagingType == PercentageType) + { + + + AfterPackaging = PackagingCalculation == 0 ? : ; + + } + else if(PackagingType == NilType ) + { + AfterPackaging = "0.00"; + } + else + { + + + AfterPackaging = PackagingCalculation == 0 ? : ; + + } + var Packaging = parseFloat(AfterPackaging).toFixed(2); + + $('#txtAfterPackaging').val(Packaging); + } + else + { + $('#txtAfterPackaging').val("0.00"); + } + } + calculateTotalValue(); + } + + function calculateExcise() + { + if($('#MaterialCode').val() == "0") + { + alert('Please Select the Material Code'); + $('#MaterialCode').focus(); + return false; + } + else if($('#Rate').val() == '') + { + alert('Please Enter the Rate value'); + $('#Rate').focus(); + return false; + } + else if($('#txtAfterDiscount').val() == '') + { + alert('Please Enter the Discount value'); + $('#DiscountType').focus(); + return false; + } + else if($('#txtAfterPackaging').val() == '') + { + alert('Please Enter the Packaging value'); + $('#PackagingType').focus(); + return false; + } + else + { + var basicValue = parseFloat($('#txtBasicValue').val()); + var AfterDiscount =parseFloat($('#txtAfterDiscount').val()); + var AfterPackaging = parseFloat($('#txtAfterPackaging').val()); + + if($('#txtExciseDuty').val() != '' && $('#txtExciseDuty').val() != '0') + { + var AfterExciseDuty = 0.0; + var ExciseDuty = parseFloat($('#txtExciseDuty').val()); + if(ExciseCalculation == '0') + { + AfterExciseDuty = ; + } + else if(ExciseCalculation == '1') + { + AfterExciseDuty = ; + } + else if(ExciseCalculation == '2') + { + AfterExciseDuty = ; + } + else + { + AfterExciseDuty = ; + } + var ExciseVal = parseFloat(AfterExciseDuty).toFixed(2); + + $('#txtAfterExciseDuty').val(ExciseVal); + } + else + { + $('#txtAfterExciseDuty').val("0.00"); + } + + } + calculateTotalValue(); + + } + + function calculateVat() + { + if($('#MaterialCode').val() == "0") + { + alert('Please Select the Material Code'); + $('#MaterialCode').focus(); + return false; + } + else if($('#Rate').val() == '') + { + alert('Please Enter the Rate value'); + $('#Rate').focus(); + return false; + } + else if($('#txtAfterExciseDuty').val() == '') + { + alert('Please Enter the Excise value'); + $('#txtExciseDuty').focus(); + return false; + } + else + { + var basicValue = parseFloat($('#txtBasicValue').val()); + var ExciseDuty = parseFloat($('#txtAfterExciseDuty').val()); + + if($('#txtVat').val() != '' && $('#txtVat').val() != '0') + { + var vatValue = parseFloat($('#txtVat').val()); + var AfterVat = 0.0; + AfterVat = VatCalculation == '0' ? :; + + var Vatval = parseFloat(AfterVat).toFixed(2); + + $('#txtAfterVat').val(Vatval); + } + else + { + $('#txtAfterVat').val("0.00"); + } + + } + calculateTotalValue(); + } + function calculateCST() + { + if($('#MaterialCode').val() == "0") + { + alert('Please Select the Material Code'); + $('#MaterialCode').focus(); + return false; + } + else if($('#Rate').val() == '') + { + alert('Please Enter the Rate value'); + $('#Rate').focus(); + return false; + } + else if($('#txtAfterExciseDuty').val() == '') + { + alert('Please Enter the Excise value'); + $('#txtExciseDuty').focus(); + return false; + } + else + { + var basicValue = parseFloat($('#txtBasicValue').val()); + var ExciseDuty = parseFloat($('#txtAfterExciseDuty').val()); + + if($('#txtCST').val() != '' && $('#txtCST').val() != '0') + { + var AfterCST = 0.0; + var CSTValue = parseFloat($('#txtCST').val()); + AfterCST = CSTCalculation == '0' ? :; + + var CSTval = parseFloat(AfterCST).toFixed(2); + + $('#txtAfterCST').val(CSTval); + } + else + { + $('#txtAfterCST').val("0.00"); + } + + } + calculateTotalValue(); + } + function calculateGST() + { + if($('#MaterialCode').val() == "0") + { + alert('Please Select the Material Code'); + $('#MaterialCode').focus(); + return false; + } + else if($('#Rate').val() == '') + { + alert('Please Enter the Rate value'); + $('#Rate').focus(); + return false; + } + else + { + var basicValue = parseFloat($('#txtBasicValue').val()); + + if($('#txtGST').val() != "0" && $('#txtGST').val() != '') + { + var GSTValue = parseFloat($('#txtGST').val()); + + var AfterGST = 0.0; + AfterGST = ; + + var GSTval = parseFloat(AfterGST).toFixed(2); + + $('#txtAfterGST').val(GSTval); + } + else + { + $('#txtAfterGST').val("0.00"); + } + + } + calculateTotalValue(); + } + function calculateOtherTaxes() + { + if($('#MaterialCode').val() == "0") + { + alert('Please Select the Material Code'); + $('#MaterialCode').focus(); + return false; + } + else if($('#Rate').val() == '') + { + alert('Please Enter the Rate value'); + $('#Rate').focus(); + return false; + } + else + { + var basicValue = parseFloat($('#txtBasicValue').val()); + + + if($('#txtOtherTax').val() != "0" && $('#txtOtherTax').val() != '') + { + var OtherTaxValue = parseFloat($('#txtOtherTax').val()); + + var AfterOtherTaxes = 0.0; + AfterOtherTaxes = ; + + var Otherval = parseFloat(AfterOtherTaxes).toFixed(2); + + $('#txtAfterOtherTax').val(Otherval); + } + else + { + $('#txtAfterOtherTax').val("0.00"); + } + + } + } + + function calculateFreight() + { + if($('#MaterialCode').val() == "0") + { + alert('Please Select the Material Code'); + $('#MaterialCode').focus(); + return false; + } + else if($('#Rate').val() == '') + { + alert('Please Enter the Rate value'); + $('#Rate').focus(); + return false; + } + else + { + var basicValue = parseFloat($('#txtBasicValue').val()); + var FreightType =$("#drpFreight").val(); + if(FreightType == "0") + { + alert('Please select Freight Type'); + $('#txtFreight').val(''); + $("#drpFreight").focus(); + } + else if( $('#txtFreight').val() != "0" && $('#txtFreight').val() != '') + { + var FreightValue = parseFloat($('#txtFreight').val()); + var UOM = parseFloat($('#UOM').val()); + var Quantity = parseFloat($('#Quantity').val()); + //alert(FreightType); + var AfterFreight = 0.0; + if(FreightType == PercentageType) + { + AfterFreight = ; + } + else if(FreightType == NilType) + { + AfterFreight = 0.0; + } + else if(FreightType == '') + { + AfterFreight = ; + } + else if(FreightType == '') + { + AfterFreight = ; + } + else if(FreightType == '') + { + AfterFreight = ; + } + var AfterFreightval = parseFloat(AfterFreight).toFixed(2); + + $('#txtAfterFreight').val(AfterFreightval); + } + else + { + $('#txtAfterFreight').val("0.00"); + } + + } + calculateTotalValue(); + } + + /* Set the Packaging calculation option for calculating Packaging */ + function SetPackagingOption() + { + PackagingCalculation = $("input:radio[name='optPackaging']:checked").val(); + $('#packagingcalmodel').modal('hide'); + } + /* Set the Packaging calculation option for calculating Packaging */ + function SetExciseCalculation() + { + ExciseCalculation = $("input:radio[name='optExcise']:checked").val(); + $('#ExciseDutyCalModel').modal('hide'); + calculateExcise(); + } + /* Set the Packaging calculation option for calculating Packaging */ + function SetVatorCST() + { + StateTaxCheck = $("input:radio[name='Range']:checked").val(); + $('#txtPoRange').val(StateTaxCheck) ; + //alert('Radio clicke:'+StateTaxCheck); + if(StateTaxCheck == "0") + { + // style="display:none;" + $('#Vat').removeAttr("style"); + $('#TotVat').removeAttr("style"); + $('#CST').attr("style","display:none;"); + $('#TotCST').attr("style","display:none;"); + + } + else + { + $('#CST').removeAttr("style"); + $('#TotCST').removeAttr("style"); + $('#Vat').attr("style","display:none;"); + $('#TotVat').attr("style","display:none;"); + + } + } + + function SetVatCalculation() + { + VatCalculation = $("input:radio[name='optVat']:checked").val(); + $('#VatCalModel').modal('hide'); + calculateVat(); + } + function SetCSTCalculation() + { + CSTCalculation = $("input:radio[name='optCST']:checked").val(); + $('#CSTCalModel').modal('hide'); + calculateCST(); + } + + function ExceedQuantityCheck() + { + // RequistQuantity + var EnterQuantity = $("#Quantity").val()== '' ? "0.00" : parseFloat($("#Quantity").val()); + var ReqQuantity = parseFloat(RequistQuantity); + if(EnterQuantity > ReqQuantity) + { + alert('Your exceeding the Quantity from the Requisition Quantity:'+ RequistQuantity +'.Please adjust the Quantity to proceed further.'); + //$('#Quantity').val(RequistQuantity); + $('#Quantity').focus(); + return false; + } + } + // To Reset the Tax calculation + function resetTaxField() + { + + $("#ItemName").val(''); + $("#UOM").val(''); + $("#Quantity").val(''); + $("#Rate").val(''); + $("#DiscountType").val("0"); + $("#txtDiscount").val(''); + $('#txtAfterDiscount').val(''); + $("#PackagingType").val("0") + $("#txtPackaging").val(''); + $('#txtAfterPackaging').val(''); + $("#txtExciseDuty").val(''); + $('#txtAfterExciseDuty').val(''); + $("#txtVat").val(''); + $('#txtAfterVat').val(''); + $("#txtCST").val(''); + $('#txtAfterCST').val(''); + $("#txtGST").val(''); + $('#txtAfterGST').val(''); + $("#txtOtherTax").val(''); + $('#txtAfterOtherTax').val(''); + $("#drpFreight").val("0") + $("#txtFreight").val(''); + $('#txtAfterFreight').val(''); + $('#txtInsurance').val(''); + $('#txtTotalOrderValue').val(''); + ExciseCalculation = ''; + PackagingCalculation = ''; + VatCalculation = ''; + CSTCalculation = ''; + } + + function showmodel() { + + var input = document.getElementById('RequestType').value; + if (input == -1) + { + alert ("Select Request Type"); + } + else + { + $("#" + input ).modal('show'); + } + } + $(document).ready(function(){ + + //Initialize Select2 Elements + $("#RequestType").select2(); + $("#DepartmentName").select2(); + $("#CostCenterName").select2(); + }); +
- -
-

Emergency Purchase Order

-
- -
-
-
-
- - - -
-
- -
- 'Department Name'); - //print_r( $options); - - if(!empty($POType)) - { - foreach ($SupplierName as $SID): - - - $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; +
+
+
+

Siddharth Industries - Emergency Purchase Order

+
- endforeach; - } - - echo form_dropdown('MaterialCode', $options,set_value('MaterialCode'),'id="MaterialCode"' , 'required="true"' ,'multiple="true"'); +
+
+
+
+ + 'Select Request Type'); - ?> -
-
-
- -
- 'Cost Center Name'); - //print_r( $options); - - if(!empty($POType)) - { - foreach ($SupplierName as $SID): - - - $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; - - endforeach; - } - - echo form_dropdown('MaterialCode', $options,set_value('MaterialCode'),'id="MaterialCode"' , 'required="true"' ,'multiple="true"'); - - ?> -
-
-
- -
- 'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'required' => 'true'); - echo form_input($data); - ?> -
-
-
-
-
- -
- 'Supplier Name'); - //print_r( $options); - - if(!empty($POType)) - { - foreach ($SupplierName as $SID): - - - $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; - - endforeach; - } - - echo form_dropdown('MaterialCode', $options,set_value('MaterialCode'),'id="MaterialCode"' ,'required="true"'); - - ?> -
-
- -
- -
- 'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'required' => 'true'); - echo form_input($data); - ?> -
-
-
- -
- 'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'required' => 'true'); - echo form_input($data); - ?> -
-
-
- -
- 'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'required' => 'true'); - echo form_input($data); - ?> -
-
-
-
-
-
- -
- -
-
- - - - - - - + if(!empty($RequestType)) + { + foreach ($RequestType as $RID): - + $options[$RID->ConfigValue] = $RID->ConfigValue; - - - - -
+ -
- - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
 SNoItem NameQuantityUOMRateTax %Total
 1001Waste SandTon100HighNo Change
 2002ResinLitre50HighChange
 3003ResinLitre100HighChange
-
- -
- 'Comments','value' => set_value('Comments'),'id'=>'Comments', 'class' => 'form-control' ,'required' => 'true'); - echo form_textarea($data); - ?> -
-
-
- -
- 'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'required' => 'true' ,'readonly' => 'true'); - echo form_input($data); - ?> -
-

'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'required' => 'true' ,'readonly' => 'true'); - echo form_input($data); - ?>

-

'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'required' => 'true' ,'readonly' => 'true'); - echo form_input($data); - ?>

-

'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'required' => 'true' ,'readonly' => 'true'); - echo form_input($data); - ?>

-

'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'required' => 'true' ,'readonly' => 'true'); - echo form_input($data); - ?>

-

'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'required' => 'true' ,'readonly' => 'true'); - echo form_input($data); - ?>

-
-
- - - -
- -
-
- - -
\ No newline at end of file + Select Tax Range
+ + + "Range", "id"=>"Local", "value"=>"0", 'checked'=>set_radio('Range', '0', TRUE))); ?>     + + "Range", "id"=>"Inter_state", "value"=>"1", 'checked'=>set_radio('Range', '1', FALSE))); ?> + + + + + +
+ + +
+ + +
+
+ +
+ 'Select Supplier'); + //print_r( $options); + + if(!empty($Suplist)) + { + foreach ($Suplist as $SID): + + + $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; + + endforeach; + } + + echo form_dropdown('drpSupplier', $options,set_value('drpSupplier'),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2"'); + + ?> +
+
+ +
+ +
+ 'SupAddress','value' => set_value('SupAddress'),'id'=>'SupAddress', 'class' => 'form-control' ,'readonly' => 'true' ,'rows' => '3', 'cols' => '40'); + echo Form_textarea($data); + ?> +
+
+
+ +
+ 'DeliveryAddr','value' => set_value('DeliveryAddr',$CompanyAddress),'id'=>'DeliveryAddr', 'class' => 'form-control' ,'required' => 'true' ,'rows' => '3', 'cols' => '40'); + echo Form_textarea($data); + ?> + +
+
+
+ +
+ 'Deliverydt','value' => set_value('Deliverydt'),'id'=>'Deliverydt', 'class' => 'form-control' ,'required' => 'true'); + echo form_input($data); + ?> +
+
+
+
+
+ +
+ 'Select Department Name'); + + if(!empty($DeptList)) + { + foreach ($DeptList as $DID): + + + $options[$DID->DEPCode] = $DID->DEPCode.' '.' - '.' '.$DID->DepartmentName; + + endforeach; + } + + echo form_dropdown('drpDepartment', $options,set_value('drpDepartment'),'id="DepartmentName"' ,'class = "form-control select2"','required="true"'); + + ?> + + + + +
+
+
+ +
+ 'Cost Center Name'); + //print_r( $options); + + if(!empty($POType)) + { + foreach ($SupplierName as $SID): + + + $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; + + endforeach; + } + + echo form_dropdown('CostCenterName', $options,set_value('CostCenterName'),'id="CostCenterName"','class="form-control select2"' , 'required="true"' ,'multiple="true"'); + + ?> +
+
+
+ +
+ 'AvalBuget','value' => set_value('AvalBuget'),'id'=>'AvalBuget', 'class' => 'form-control' ,'required' => 'true' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+ +
+ +
+
+ + + + + + + + + + + +
+ +
+ + + + + + + + + + + + + + + + + +
+ + +
+
+ + + + + + + + + + + + + + + + + + +
SNoRequisition NoItem NameQuantityUOMRateBasic AmountTax AmountTotal Order AmountAction
+
+ + + + + + + + +
+ +
+ + + + + +
+
+ + + + + \ No newline at end of file diff --git a/application/views/createPOfromRequistion.php b/application/views/createPOfromRequistion.php index 36df88f4..2966aeca 100644 --- a/application/views/createPOfromRequistion.php +++ b/application/views/createPOfromRequistion.php @@ -2,10 +2,21 @@ - +
'form-label-left CreatePO ','name' => 'CreatePO','id' => 'CreatePO','method' => 'post','role' => 'form' ); @@ -44,7 +55,7 @@
- +
'Select Requistion Status'); @@ -67,7 +78,7 @@
- +
@@ -78,17 +89,25 @@
- +
+
+ Search + Clear +

+

+ + + + +

+
-
- - Search - Clear -

+
- +
'Desigination','value' => set_value('Desigination'),'id'=>'Desigination', 'class' => 'form-control' ,'readonly' => 'true'); @@ -135,7 +154,7 @@
- +
'RequistionDate','value' => set_value('RequistionDate'),'id'=>'RequistionDate', 'class' => 'form-control' ,'readonly' => 'true'); @@ -160,7 +179,7 @@
- +  
'AvlBudgetAmount','value' => set_value('AvlBudgetAmount'),'id'=>'AvlBudgetAmount', 'class' => 'form-control' ,'readonly' => 'true'); @@ -209,18 +228,19 @@
- +
+
+ - - + + @@ -239,7 +259,11 @@ - + @@ -254,14 +278,13 @@
Select Requistion Number Requistion Type Requisted ByReqDateRequested ByRequested Date Status Department DesignationReqNo; ?> ReqType; ?> FirstName; ?>ReqDate; ?>ReqDate); + $RequestedDate = $dt->format('d-m-Y'); + echo $RequestedDate; + ?> StatusName; ?> DepartmentName; ?> Designation; ?>
-
- - - +
+ + +
-
+
@@ -501,17 +524,32 @@ $('#CostCenter').change(function() { if(id != '-1') { $('#content').loader('show'); - - $.ajax({ + $.ajax({ data:{id:id}, - dataType: 'json', type:"POST", - url:"requisitionform/getAvailableBudAmount?ReqType="+ReqType, - success:function(json) { - $('#content').loader('hide'); - $("#AvlBudgetAmount").val(json.Cost[0]['BudgetAmount']); - - } + url:"servicepurchaseorder/AvilBudgetAmount?ReqType="+ReqType, + success:function(data) { + if(data) + { + $('#content').loader('hide'); + $("#AvlBudgetAmount").val(data); + if(parseFloat($("#AvlBudgetAmount").val()) <= 0) + { + $('#AlertImg').removeAttr("style"); + + } + else + { + $('#AlertImg').attr("style","display:none;"); + + } + } + else + { + $('#content').loader('hide'); + alert("Error"); + } + } }); @@ -522,6 +560,32 @@ $('#CostCenter').change(function() { return false; } -}); +}); +function Validate() +{ + var ReqNo = $('#txtReqNo').val(); + if(ReqNo.length <=0 ) + { + alert('Please select the Requisition Number to Create Purchase Order' ); + return false; + } + else + { + return true; + } +} +$(function () { + //$("#revenueTax").DataTable(); + $('#REQLIST').DataTable({ + "paging": true, + "lengthChange": true, + "searching": true, + "ordering": true, + "info": true, + "autoWidth": true + + }); + }); + \ No newline at end of file diff --git a/application/views/create_pdf.php b/application/views/create_pdf.php index 985531fa..27cedb3f 100644 --- a/application/views/create_pdf.php +++ b/application/views/create_pdf.php @@ -62,19 +62,20 @@ if(!empty($PODetail))

- Survey NO: 168/1C3, +

Siddharth Industries


+ Survey NO: 168/1C3,
Pennalur Pet Road, - Goonipalyam village,
+ Goonipalyam village,
Uthukottai Taluk, - Tiruvallur Dist, - Tamilnadu,Pin code : 602026.
+ Tiruvallur Dist,
+ Tamilnadu,Pin code : 602026.
Email: customersupport@sidharthindustries.com
-

Purchase Order -

+

Purchase Order -

diff --git a/application/views/editRevenuepurchaseorder.php b/application/views/editRevenuepurchaseorder.php new file mode 100644 index 00000000..3f5638ca --- /dev/null +++ b/application/views/editRevenuepurchaseorder.php @@ -0,0 +1,3881 @@ + +format('Y-m-d'); +$MaxPoDate = ''; +if(!empty($MaxPODate)) +{ + foreach ($MaxPODate as $date) + { + $MaxPoDate = $date->PODate; + } +} +if(!empty($CompanyDetails)) +{ + foreach ($CompanyDetails as $Req) + { + $CompanyAddress = $Req->Address; + } +} + + $SupId = ''; + $SupName = ''; + $Address = ''; + $PODate = ''; + $Deliverydt =''; + $DeliveryAddress =''; + $POStatus = ''; + $PONO = ''; + $totBasicAmt = 0; + $totDiscountAmt = 0.0; + $totPackagingAmt = 0.0; + $totExciseAmt = 0.0; + $totVATAmt = 0.0; + $totCSTAmt = 0.0; + $totGSTAmt = 0.0; + + $totOtherTaxAmt = 0.0; + $totFreightAmt = 0.0; + $totInsuranceAmt = 0.0; + $totOrderSummaryAmt = 0.0; + + $ServiceDescription = ''; + +if(!empty($POMaster)) +{ + foreach ($POMaster as $Req) + { + $SupId = $Req->SupplierID; + $SupName = $Req->SupplierName; + $Address = $Req->Address; + + $Pdt = new DateTime($Req->PODate); + $PODate = $Pdt->format('Y-m-d'); + + $Ddt = new DateTime($Req->DeliveryDate); + $Deliverydt = $Ddt->format('Y-m-d'); + + $DeliveryAddress =$Req->DeliveryAddress; + $POStatus = $Req->StatusCode; + $PONO = $Req->PONO; + $ServiceDescription = $Req->ServiceDescription; + } +} +?> + + + + +
+ 'form-label-left CreatePO ','name' => 'CreatePO','id' => 'CreatePO'); + + echo form_open($this->config->base_url().'/purchaseorder/addPO/',$attributes); ?> + +
+ +
+

Siddharth Industries - Edit Revenue Purchase Order -



+
+
+
+
+ + 'Selected Requisition Numbers'); + if(!empty($ReqList)) + { + foreach ($ReqList as $SID): + + $options[$SID->ReqNo] = $SID->ReqNo ; + //$ReqType = $SID->ReqType; + endforeach; + } + echo form_multiselect('RequistionNo', $options,set_value('RequistionNo'),'id="RequistionNo"' ,'required="true"' , 'height="400px"' ); + ?> +
+
+
+
+ + 'Select Supplier'); + //print_r( $options); + + if(!empty($Suplist)) + { + foreach ($Suplist as $SID): + + + $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; + + endforeach; + } + + echo form_dropdown('drpSupplier', $options,set_value('drpSupplier',$SupId),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2'); + + ?> +
+
+ +
+ + 'POType','value' => set_value('POType',REVENUE),'id'=>'POType', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
+
+
+ +
+ Select Tax Range
+ + + "Range","id"=>"Local","value"=>"0", 'checked'=>set_radio('Range', '0', TRUE),'onchange'=>'SetVatorCST();')); ?>     + "Range","id"=>"Inter_state","value"=>"1", 'checked'=>set_radio('Range', '1', FALSE),'onchange'=>'SetVatorCST();')); ?> + + +
+ + + + +
+
+
+
+ +
+ 'SupAddress','value' => set_value('SupAddress',$Address),'id'=>'SupAddress', 'class' => 'form-control' ,'readonly' => 'true' ,'rows' => '3', 'cols' => '40'); + echo Form_textarea($data); + ?> +
+
+
+ +
+ 'DeliveryAddr','value' => set_value('DeliveryAddr',$DeliveryAddress),'id'=>'DeliveryAddr', 'class' => 'form-control' ,'required' => 'true' ,'rows' => '3', 'cols' => '40'); + echo Form_textarea($data); + ?> +
+
+
+ +
+ 'PODate','value' => set_value('PODate',$PODate),'id'=>'PODate', 'class' => 'form-control' ,'required' => 'true','onkeypress'=>'return false;'); + echo form_input($data); + ?> +
+
+
+ +
+ 'Deliverydt','value' => set_value('Deliverydt',$Deliverydt),'id'=>'Deliverydt', 'class' => 'form-control' ,'required' => 'true','onkeypress'=>'return false;'); + echo form_input($data); + ?> + +
+
+ +
+
+ +
+
+ + + + + + + + + + + +
+ +
+ + + + + +
+ +
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + BasicValue; + $totDiscountAmt = $totDiscountAmt + $record->AfterDiscount; + $totPackagingAmt = $totPackagingAmt + $record->AfterPackagingValue; + $totExciseAmt = $totExciseAmt + $record->AfterExciseDuty; + $totVATAmt = $totVATAmt + $record->AfterVAT; + $totCSTAmt = $totCSTAmt + $record->AfterCST; + $totGSTAmt = $totGSTAmt +$record->AfterGST; + + $totOtherTaxAmt = $totOtherTaxAmt + $record->AfterOtherTaxes; + $totFreightAmt = $totFreightAmt + $record->AfterFreightValue; + $totInsuranceAmt = $totInsuranceAmt + $record->Insurance; + $totOrderSummaryAmt = $totOrderSummaryAmt +$record->TotalValue; + + } + ?> + + +
SNoRequisition NoItem NameQuantityUOMRateBasic AmountTax AmountTotal Order AmountAction
ReqNo ?>MaterialName ?>Quantity ?>UOM ?>Rate ?>BasicValue ?>Taxamount ?>TotalValue ?>     + +    
+
+ + + + + +
+ +
+
+
+
+ + + 'txtTotBasicAmount','value' => set_value('txtTotBasicAmount',$totBasicAmt),'id'=>'txtTotBasicAmount', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> + + +
+
+ + + 'txtTotalDiscount','value' => set_value('txtTotalDiscount',$totDiscountAmt),'id'=>'txtTotalDiscount', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> + +
+
+ + + 'txtTotalVat','value' => set_value('txtTotalVat',$totVATAmt),'id'=>'txtTotalVat', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> + +
+ +
+ + + 'txtTotalPackaing','value' => set_value('txtTotalPackaing',$totPackagingAmt),'id'=>'txtTotalPackaing', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> + +
+
+
+
+ + + 'txtTotExciseDuty','value' => set_value('txtTotExciseDuty',$totExciseAmt),'id'=>'txtTotExciseDuty', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> + +
+
+ + + 'txtTotalGST','value' => set_value('txtTotalGST',$totCSTAmt),'id'=>'txtTotalGST', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> + +
+
+ + + 'txtTotalInsurance','value' => set_value('txtTotalInsurance',$totInsuranceAmt),'id'=>'txtTotalInsurance', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> + +
+
+ + + 'txtTotalFreight','value' => set_value('txtTotalFreight',$totFreightAmt),'id'=>'txtTotalFreight', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> + +
+
+
+
+ + 'txtTotalOtherTaxes','value' => set_value('txtTotalOtherTaxes',$totOtherTaxAmt),'id'=>'txtTotalOtherTaxes', 'class' => 'form-control','readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+
 
+


+
+ 'txtTotalOrderValueSummary','value' => set_value('txtTotalOrderValueSummary',$totOrderSummaryAmt),'id'=>'txtTotalOrderValueSummary', 'class' => 'form-control' ,'readonly' => 'true','style'=>'text-align:right;'); + echo form_input($data); + ?> +
+
+
+
+ 'txtSpcialInstruction','value' => set_value('txtSpcialInstruction',$ServiceDescription),'id'=>'txtSpcialInstruction', 'class' => 'form-control','rows' => '3', 'cols' => '40' ); + echo form_textarea($data); + ?> +
+
+
+

+ + + + + + + +   Save +   Submit + + + + + + +

+
+
+
+
+ +
+ + + \ No newline at end of file diff --git a/application/views/editrequisitionform.php b/application/views/editrequisitionform.php index 1ec63dc7..0aeb8a5d 100644 --- a/application/views/editrequisitionform.php +++ b/application/views/editrequisitionform.php @@ -1,8 +1,4 @@ -Currently editing: -/home/kasiram9/public_html/sidd_uat/application/views/editrequisitionform.php - Encoding: Reopen Switch to Code Editor Close Save -
- +  
'AvlBudgetAmount','value' => set_value('AvlBudgetAmount'),'id'=>'AvlBudgetAmount', 'class' => 'form-control' ,'readonly' => 'true'); echo form_input($data); - ?> + ?> +
+
- +
@@ -285,8 +283,8 @@ if(!empty($ReqDetails))

-
- +
+ @@ -338,15 +336,16 @@ if(!empty($ReqDetails)) -   Save - +   Save +   Submit + - +   Update @@ -388,17 +387,31 @@ $('#CostCenter').change(function() { if(id != '-1') { $('#content').loader('show'); - - $.ajax({ + $.ajax({ data:{id:id}, - dataType: 'json', type:"POST", - url:"requisitionform/getAvailableBudAmount?ReqType="+ReqType, - success:function(json) { - $('#content').loader('hide'); - $("#AvlBudgetAmount").val(json.Cost[0]['BudgetAmount']); - - } + url:"servicepurchaseorder/AvilBudgetAmount?ReqType="+ReqType, + success:function(data) { + if(data) + { + $('#content').loader('hide'); + $("#AvlBudgetAmount").val(data); + + if(parseFloat($("#AvlBudgetAmount").val()) <= 0) + { + $('#AlertImg').removeAttr("style"); + } + else + { + $('#AlertImg').attr("style","display:none;"); + } + } + else + { + $('#content').loader('hide'); + alert("Error"); + } + } }); @@ -451,7 +464,34 @@ $('#CostCenter').change(function() { $('#drpMaterial').change(function() { - + var id = $('#drpMaterial').val(); + +$("#Description").val(''); +$("#UOM").val(''); + if(id != '-1') + { + $('#content').loader('show'); + + $.ajax({ + data:{id:id}, + dataType: 'json', + type:"POST", + url:"requisitionform/getMaterialDetails", + success:function(json) { + $('#content').loader('hide'); + //alert(json.MatDetail); + $("#Description").val(json.MatDetail[0]['MaterialName']); + $("#UOM").val(json.MatDetail[0]['UOM']); + } + + }); + //$('#content').loader('hide'); + } + else + { + alert('Please select the RequestType'); + return false; + } }); @@ -481,7 +521,7 @@ function removeHiddenRows(rowcount) { var step; //alert(rowcount); -for (step = 1; step < rowcount; step++) { +for (step = 1; step < rowcount-1; step++) { var td = document.getElementById(step); td.parentNode.removeChild(td); $("#MaterialCode"+step).remove(); @@ -495,16 +535,32 @@ for (step = 1; step < rowcount; step++) { -function Save() +function Save(status) { - - var id = '' +if(status == '0') +{ + stat = ''; +} +else +{ + stat = ''; +} + if(validate()) { + if(document.getElementById('Items').rows.length < 2) + { + alert('Please Select Line item to update the Requisition'); + $('#Deliverydt').focus(); + return false; + } + else + { + //alert(document.getElementById('Items').rows.length); $('#content').loader('show'); - $('#txtStatus').val(id); - $.ajax({ + $('#txtStatus').val(stat); + $.ajax({ data:$('.requistion').serialize(), type:"POST", url:"requisitionform/EditRequistion", @@ -516,7 +572,7 @@ function Save() $('#txtRowCount').val(''); $('#txtDeletedRow').val(''); - //window.location = baseurl + 'CostCenter/CostListing'; + window.location = "Requisition"; } else @@ -526,12 +582,13 @@ function Save() } -}); - +}); + } } } function validate() { + if($("option:selected", $("#RequestType")).val() == '-1') { alert('Please Select ReqType Names'); @@ -542,7 +599,7 @@ function validate() alert('Please Select Reqby'); return false; } - else if($("#txtRowCount").val().length < 1) + else if(index < 1) { alert('Please Add Line Item'); return false; @@ -560,6 +617,7 @@ function DeleteRow(rowid) var tr= document.getElementById(rowid); var cellval = tr.cells; var MaterialCode = cellval[1].innerHTML; + // alert(cellval[1].innerHTML); id[0] = $('#txtReqNo').val(); id[1] = MaterialCode; var answer = confirm(" Do you want to delete the Item from the List?") @@ -601,7 +659,18 @@ function DeleteRow(rowid) // To delete the value from Tables else if(result == '1') { - + var DelRows = $('#txtDeletedRow').val(); + tr.parentNode.removeChild(tr); + if(DelRows != '') + { + DelRows = DelRows + ":" + rowid; + } + else + { + DelRows= "0" + ":" + rowid; + } + $('#txtDeletedRow').val(DelRows); + $.ajax({ data:{id:id}, type:"POST", @@ -611,8 +680,7 @@ function DeleteRow(rowid) { $('#content').loader('hide'); alert(data); - - location.reload(); + } @@ -735,5 +803,15 @@ $('.EditClick').click(function(){ } }); - + $(function () { + $('#Items').DataTable({ + "paging": false, + "lengthChange": true, + "searching": false, + "ordering": false, + // "info": true, + "autoWidth": true + + }); + }); diff --git a/application/views/importpo.php b/application/views/importpo.php index 5a9e7cb8..04e3f8ab 100644 --- a/application/views/importpo.php +++ b/application/views/importpo.php @@ -1,8 +1,6 @@ + .table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td {border: 1px solid #333;} +
@@ -13,29 +11,30 @@
-
- -
+
+ +
+ 'Requistion No'); + //print_r( $options); - 'Selected Requisition Numbers'); - if(!empty($ReqList)) + if(!empty($POType)) { - foreach ($ReqList as $SID): + foreach ($SupplierName as $SID): - // print_r($SID->ReqNo); - $options[$SID->ReqNo] = $SID->ReqNo ."-". $SID->ReqBy; - $ReqType = $SID->ReqType; - endforeach; - } - echo form_multiselect('RequistionNo', $options,set_value('RequistionNo'),'id="RequistionNo"' , 'required="true"'); + + $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; - ?> -
-
-
- + endforeach; + } + + echo form_dropdown('MaterialCode', $options,set_value('MaterialCode'),'id="MaterialCode"' ,'class="form-control required"','required="true"'); + + ?> +
+
+
+
'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'required' => 'true'); @@ -43,32 +42,7 @@ ?>
-
-
-
-
- -
- 'Select Supplier'); - //print_r( $options); - - if(!empty($Suplist)) - { - foreach ($Suplist as $SID): - - - $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; - - endforeach; - } - - echo form_dropdown('drpSupplier', $options,set_value('drpSupplier'),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2'); - - ?> -
-
-
+
-
- - + +
+ +
'Select Currency Type'); //print_r( $options); @@ -97,9 +72,11 @@ echo form_dropdown('MaterialCode', $options,set_value('MaterialCode'),'id="MaterialCode"' ,'class="form-control required"','required="true"'); ?> - +
-
+
+
+
- -
+
+ +
+ 'Supplier'); + //print_r( $options); + + if(!empty($POType)) + { + foreach ($SupplierName as $SID): + + + $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; + + endforeach; + } + + echo form_dropdown('MaterialCode', $options,set_value('MaterialCode'),'id="MaterialCode"' ,'class="form-control required"','required="true"'); + + ?> +
+
+
'SupAddress','value' => set_value('SupAddress'),'id'=>'SupAddress', 'class' => 'form-control' ,'readonly' => 'true','required' => 'true' ,'rows' => '3', 'cols' => '40'); - echo Form_textarea($data); - ?> + $data = array('name' => 'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'required' => 'true'); + echo form_input($data); + ?>
-
- -
- 'DeliveryAddr','value' => set_value('DeliveryAddr'),'id'=>'DeliveryAddr', 'class' => 'form-control' ,'required' => 'true' ,'rows' => '3', 'cols' => '40'); - echo Form_textarea($data); - ?> -
-
-
- -
- 'Deliverydt','value' => set_value('Deliverydt'),'id'=>'Deliverydt', 'class' => 'form-control datePicker' ,'required' => 'true'); - echo form_input($data); - ?> -
-
- - - - -
- - - - +
+ +
+ 'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'required' => 'true'); + echo form_input($data); + ?> +
- +
SNo Material Code
-
+
- + -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
SNoRequisition NoItem NameQuantityUOMRateBasic AmountTax AmountTotal Order AmountAction
1Req0004Sand100kgs10010000100011000Edit
2Req0008Sand150kgs10015000100016000Edit
3Req0016Resin100liter1001000050010500Edit
-
+ + +   + R No + Item Name + Quantity + UOM + Rate + Tax % + Total + + + + +   + 1 + 001 + Waste Sand + Ton + 100 + High + No Change + + +   + 2 + 002 + Resin + Litre + 50 + High + Change + + +   + 3 + 003 + Resin + Litre + 100 + High + Change + +
@@ -761,17 +722,4 @@
- - \ No newline at end of file + \ No newline at end of file diff --git a/application/views/includes/header.php b/application/views/includes/header.php index a147f83d..954f16d7 100644 --- a/application/views/includes/header.php +++ b/application/views/includes/header.php @@ -20,9 +20,7 @@ - - - + @@ -292,7 +290,7 @@ ?> @@ -304,7 +302,7 @@ { ?>
  • - + Emergency Purchase Order @@ -314,7 +312,7 @@ } ?>
  • diff --git a/application/views/includes/pdffooter.php b/application/views/includes/pdffooter.php index 1d058fdb..5d476772 100644 --- a/application/views/includes/pdffooter.php +++ b/application/views/includes/pdffooter.php @@ -1,5 +1,5 @@ -
    Amount chargable (in words)

    -
    for Siddharth Industries

    Authorised Signature
    +
    Amount chargable (in words)



    +
    for Siddharth Industries


    Authorised Signature
    This is Computer Generated Document
    \ No newline at end of file diff --git a/application/views/includes/pdfheader.php b/application/views/includes/pdfheader.php index d8993d13..5a9dcbb9 100644 --- a/application/views/includes/pdfheader.php +++ b/application/views/includes/pdfheader.php @@ -1,9 +1,4 @@
    - - - - - - -

    SIDDHARTH INDUSTRIES


    +

    SIDDHARTH INDUSTRIES - PURCHASE ORDER

    +

    \ No newline at end of file diff --git a/application/views/purchaseorder.php b/application/views/purchaseorder.php index 4ec1f0b6..93a953dd 100644 --- a/application/views/purchaseorder.php +++ b/application/views/purchaseorder.php @@ -1,5 +1,24 @@ - +format('Y-m-d'); +$MaxPoDate = ''; +if(!empty($MaxPODate)) +{ + foreach ($MaxPODate as $date) + { + $MaxPoDate = $date->PODate; + } +} +if(!empty($CompanyDetails)) +{ + foreach ($CompanyDetails as $Req) + { + $CompanyAddress = $Req->Address; + } +} +?> - - +
    config->base_url().'/purchaseorder/addPO/',$attributes); ?> -
    +
    +
    -
    -
    +

    Siddharth Industries - Service Purchase Order

    - -
    - -
    -
    - -
    + +
    +
    +
    + + -
    -
    -
    + +
    +
    +
    -
    -
    - 'Select Supplier'); - //print_r( $options); - - if(!empty($Suplist)) - { - foreach ($Suplist as $SID): - - - $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; + + 'Select Supplier'); + //print_r( $options); + + if(!empty($Suplist)) + { + foreach ($Suplist as $SID): + + + $options[$SID->SupplierID] = $SID->SupplierID.' '.' - '.' '.$SID->SupplierName; - endforeach; - } - - echo form_dropdown('drpSupplier', $options,set_value('drpSupplier'),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2'); + endforeach; + } + + echo form_dropdown('drpSupplier', $options,set_value('drpSupplier'),'id="drpSupplier"' ,'required="true"' ,'class="form-control select2'); - ?> -
    -
    -
    - -
    - 'PODate','value' => set_value('PODate'),'id'=>'PODate', 'class' => 'form-control datePicker' ,'required' => 'true'); - echo form_input($data); - ?> -
    -
    -
    - -
    - - 'POType','value' => set_value('POType',SERVICE),'id'=>'POType', 'class' => 'form-control' ,'readonly' => 'true'); - echo form_input($data); - ?> -
    - - -
    - -
    - -
    - 'SupAddress','value' => set_value('SupAddress'),'id'=>'SupAddress', 'class' => 'form-control' ,'readonly' => 'true','required' => 'true' ,'rows' => '3', 'cols' => '40'); - echo Form_textarea($data); - ?> -
    -
    -
    - -
    - 'DeliveryAddr','value' => set_value('DeliveryAddr'),'id'=>'DeliveryAddr', 'class' => 'form-control' ,'required' => 'true' ,'rows' => '3', 'cols' => '40'); - echo Form_textarea($data); - ?> -
    -
    - -
    - -
    - 'Deliverydt','value' => set_value('Deliverydt'),'id'=>'Deliverydt', 'class' => 'form-control datePicker' ,'required' => 'true'); - echo form_input($data); - ?> -
    -
    - - -
    -
    -
    - - + ?> + +
    +

    + +
    + 'SupAddress','value' => set_value('SupAddress'),'id'=>'SupAddress', 'class' => 'form-control' ,'readonly' => 'true','rows' => '3', 'cols' => '40'); + echo Form_textarea($data); + ?> +
    +
    +
    +
    +
    + +
    + + 'POType','value' => set_value('POType',SERVICE),'id'=>'POType', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
    +
    +
    + +
    + 'DeliveryAddr','value' => set_value('DeliveryAddr',$CompanyAddress),'id'=>'DeliveryAddr', 'class' => 'form-control' ,'required' => 'true', 'rows' => '3', 'cols' => '40'); + echo Form_textarea($data); + ?> +
    +
    +
    +
    +
    + +
    + 'PODate','value' => set_value('PODate',$CurrentDate),'id'=>'PODate', 'class' => 'form-control' ,'required' => 'true', 'onkeypress'=>'return false;'); + echo form_input($data); + ?> +
    +
    +
    + +
    + 'Deliverydt','value' => set_value('Deliverydt',$CurrentDate),'id'=>'Deliverydt', 'class' => 'form-control' ,'required' => 'true', 'onkeypress'=>'return false;'); + echo form_input($data); + ?> +
    +
    +
    + +
    +
    +
    -
    +
    - + + + +


    @@ -925,9 +1060,10 @@ function clearEditTaxField()
    -
    +
    +
    -
    +
    Service Tax @14% :
    @@ -944,7 +1080,7 @@ function clearEditTaxField()
    -
    +
    Edu. cess @2% on service Tax :
    @@ -962,7 +1098,7 @@ function clearEditTaxField()
    -
    +
    Sec. & Higher Edu. cess @1 % on service Tax :
    @@ -979,7 +1115,7 @@ function clearEditTaxField()
    -
    +
    Krishi Kalyan tax @.5 % on Basic Amount:
    @@ -994,8 +1130,9 @@ function clearEditTaxField()
    -
    -
    +
    + +
    Swachh Bharat tax @.5 % on Basic Amount:
    @@ -1009,9 +1146,10 @@ function clearEditTaxField()
    -
    +
    +
    -
    +
    Total Order value :
    @@ -1024,7 +1162,7 @@ function clearEditTaxField()
    -
    +

    @@ -1042,13 +1180,11 @@ function clearEditTaxField()
    - - - +
    - -
    -
    + +
    +
    @@ -1063,152 +1199,102 @@ function clearEditTaxField() - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + +
    SNoAction
    1Req0004Sand100kgs10010000100011000Edit
    2Req0008Sand150kgs10015000100016000Edit
    3Req0016Resin100liter1001000050010500Edit
    - - - - -
    -
    -
    -
    - - - 'txtTotBasicAmount','value' => set_value('txtTotBasicAmount'),'id'=>'txtTotBasicAmount', 'class' => 'form-control' ,'readonly' => 'true'); - echo form_input($data); - ?> -
    -
    - - - 'txtTotalServiceTax','value' => set_value('txtTotalServiceTax'),'id'=>'txtTotalServiceTax', 'class' => 'form-control' ,'readonly' => 'true'); - echo form_input($data); - ?> - -
    -
    - - - 'txtTotalEducess','value' => set_value('txtTotalEducess'),'id'=>'txtTotalEducess', 'class' => 'form-control' ,'readonly' => 'true'); - echo form_input($data); - ?> -
    -
    -
    -
    - - - 'txtTotHigherEdu','value' => set_value('txtTotHigherEdu'),'id'=>'txtTotHigherEdu', 'class' => 'form-control' ,'readonly' => 'true'); - echo form_input($data); - ?> - -
    -
    - - - 'txtTotalKrishiKalyan','value' => set_value('txtTotalKrishiKalyan'),'id'=>'txtTotalKrishiKalyan', 'class' => 'form-control' ,'readonly' => 'true'); - echo form_input($data); - ?> -
    -
    - - - 'txtTotSwachhBharat','value' => set_value('txtTotSwachhBharat'),'id'=>'txtTotSwachhBharat', 'class' => 'form-control' ,'readonly' => 'true'); - echo form_input($data); - ?> - -
    +
    +
    +
    + + 'txtTotBasicAmount','value' => set_value('txtTotBasicAmount'),'id'=>'txtTotBasicAmount', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
    +
    + + 'txtTotalServiceTax','value' => set_value('txtTotalServiceTax'),'id'=>'txtTotalServiceTax', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
    +
    + + 'txtTotalEducess','value' => set_value('txtTotalEducess'),'id'=>'txtTotalEducess', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
    -
    - - - 'txtTotalOrderValueSummary','value' => set_value('txtTotalOrderValueSummary'),'id'=>'txtTotalOrderValueSummary', 'class' => 'form-control' ,'readonly' => 'true'); - echo form_input($data); - ?> - +
    + + 'txtTotHigherEdu','value' => set_value('txtTotHigherEdu'),'id'=>'txtTotHigherEdu', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
    +
    + + 'txtTotalKrishiKalyan','value' => set_value('txtTotalKrishiKalyan'),'id'=>'txtTotalKrishiKalyan', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
    +
    + + 'txtTotSwachhBharat','value' => set_value('txtTotSwachhBharat'),'id'=>'txtTotSwachhBharat', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> +
    +
    +
    +
    +
    + 'txtTotalOrderValueSummary','value' => set_value('txtTotalOrderValueSummary'),'id'=>'txtTotalOrderValueSummary', 'class' => 'form-control' ,'readonly' => 'true'); + echo form_input($data); + ?> + +
    -
    - - 'txtSpcialInstruction','value' => set_value('txtSpcialInstruction'),'id'=>'txtSpcialInstruction', 'class' => 'form-control' ,'rows' => '3', 'cols' => '40' ); - echo form_textarea($data); - ?> -
    -
    -
    -

    - - - - -   Save - - - - - -

    -
    -
    -
    -
    +
    + 'txtSpcialInstruction','value' => set_value('txtSpcialInstruction'),'id'=>'txtSpcialInstruction', 'class' => 'form-control' ,'rows' => '4', 'cols' => '40' ); + echo form_textarea($data); ?> +
    +
    +
    +
    +
    +
    + + + + + +   Save +   Submit + +

    +
    +
    +
    +

    +
    +
    +
    + + diff --git a/application/views/servicepopdf.php b/application/views/servicepopdf.php index 4d424ee3..e422d421 100644 --- a/application/views/servicepopdf.php +++ b/application/views/servicepopdf.php @@ -1,73 +1,171 @@ - + +Currently editing: +/home/kasiram9/public_html/sidd_SIT/application/views/servicepopdf.php + Encoding: Reopen Switch to Code Editor Close Save + + CompanyName; + $CompanyAddress = $CO->Address; + + } +} + if(!empty($POItem)) + { + foreach ($POItem as $PO) + { + $PONO = $PO->PONO; + $SuplierName = $PO->SupplierName; + $SuplierAddress = $PO->Address; + $DeliveryAddress = $PO->DeliveryAddress; + + $dt = new DateTime($PO->PODate, new DateTimeZone('Asia/Kolkata')); + $Podt = $dt->format('d-m-Y'); + $dtDe = new DateTime($PO->DeliveryDate, new DateTimeZone('Asia/Kolkata')); + $DeliveryDate = $dtDe->format('d-m-Y'); + $ServiceDescription =$PO->ServiceDescription; + + } +} + + ?>
    -

    SERVICE PURCHASE ORDER

    -#PO0001
    +

    PURCHASE ORDER

    +
    - +
    PO NO:
    +

    -Siddharth Industries
    Survey No: 168/1C3,Pennalur Pet Road,
    Goonipalyam village,Uthukottai Taluk,
    Tiruvallur Dist, Chennai,Tamilnadu,Pin code : 602026.

    +

    +

    Vendor Address :

    -

    Vendor Address
    DR Enterprices
    Uthukottai Taluk,Tiruvallur Dist, Chennai,Tamilnadu,Pin code : 602026.

    -

    Delivery To
    Siddharth Industries
    Survey No: 168/1C3,Pennalur Pet Road, Goonipalyam village, Uthukottai Taluk,Tiruvallur Dist, Chennai,Tamilnadu,Pin code : 602026.

    +

    Delivery To :

    -

    Purchase Order Date :2/5/2017 , Delivery Date :10/5/2017

    +
    Delivery Date :

    - + - - - - - - - + + + + + + + + + + BasicValue + $record->Taxamount + ?> - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + BasicValue; + $ServiceTax =$ServiceTax + $record->ServiceTax; + $EducessTax =$EducessTax + $record->EducessTax; + $SecHigherEducessTax = $SecHigherEducessTax + $record->SecHigherEducessTax; + $KrishiKalyantax =$KrishiKalyantax + $record->KrishiKalyantax; + $SwachhBharattax =$SwachhBharattax + $record->SwachhBharattax; + + } + $OrderValue = $SubTotalAmount + $ServiceTax + $EducessTax+$SecHigherEducessTax+$KrishiKalyantax +$SwachhBharattax; + } + + ?>
    #Item and DescriptionItem Description QtyRate per unitExcide DutyVatGSTCSTOther TaxesAmount (Rs)RateAmountService TaxEducess TaxSec Higher Educess TaxKrishi Kalyan taxSwachh Bharat taxTotal Amount
    1Resin - (A grade)100120500100013007002001,23,800
    2Dry Sand - (A grade)10001200500010000130007000200012,38,000MaterialName ; ?>Quantity ; ?>Rate ; ?>BasicValue ; ?>ServiceTax ; ?>EducessTax ; ?>SecHigherEducessTax ; ?>KrishiKalyantax ; ?>SwachhBharattax ; ?>
    -

    Sub Total (Rs):13,61,800

    -
    - - + +
    -

    Service Tax @14% (RS):190653

    -

    Edu. cess @2%(Rs) :27236

    -

    Sec & Higher cess @1% (Rs) :13618

    -

    Krishi kalyan Tax @5% (Rs) :68090

    -

    Swachh Barath Tax @5% (Rs) :68090

    -

    Total Amount (Rs):13,61,800

    + + + +
    + + + + + +
    + + + + +
    + + + + +
    + + + + +
    + + + + +
    + + + + +
    +
    Sub Total Amount :
    Service Tax @14% :
    Edu. cess @2% on ServiceTax:
    Sec & Higher cess @1% on ServiceTax:
    Krishi kalyan Tax @0.5% on Basic Amount:
    Swachh Barath Tax @0.5% on Basic Amount :

    Total Order Amount :



    +

    +

    Service Description:

    - -
    \ No newline at end of file + diff --git a/assets/dist/img/red.png b/assets/dist/img/red.png new file mode 100644 index 0000000000000000000000000000000000000000..5b1bfd281b98f6a3c71ea19ee310cae586fc5304 GIT binary patch literal 2016 zcmV<62Os!}P)i;n@|IN++$jJZE z(f{1s|2;kbxVZm*e*dVb|B{mbR8;?9VE<)h|A~qJHa7p|<^Q|8|DmD(baeljng3c^ z|4vT-f`b2#kN*x1|8Q{sM@Rp1a{og^|05&+J3IfJod0TSH$I!_000LINkl zTX(WL5I_wAD#}Gs@P^{Ot)Ke;|J~8rp0=P8U@{X}*>8Pn_6m?>GBY+Bm}t&&zxFKD z|A~p|P1%h@>`)Iy49=W=vl(dAqY;3!Vm}P~)Wd;Ci(9`8*~X_H5ICJ9`$Js2=hXNs z$li785dmZF5{9fpJtSb9OVV&aJtSZjlcZsjdPuasgnc`tA15Jtb@0Qi$gZixEi5iBXv;X=1_?s2o`{W7MHf%#dP)E3XtngD`~y-B+?YNJ%BqM)LrhYrmEnZX+uITc5* z4iR}3WefoH3oi4I38;0__>g{A_S8a2oK&Q#ERse2%_+1XbEVqAX=l)v@Xk!8ZFnDO zA^byYEzbwlS_u%mKBw{|Y#0Kb(Hn2FocjHDF@n;3PqnouK^Doe2iL)u!XMVua-WRF z39_~fZ=xgUGjm6VN!*JRWNir!{6eRYv6$MgF%m1tw$y?R{_B@w{G;C3bN~|~Z0vk@XhrDJZrzfZzakiu8is<`iW{^i46)1oos&l>sKbY69zdDJC?tB3 zf-*mBgzy?Nwjz8HyBLCOO1L7%D27|Q$fTc+~;TY28y4Bxsktz%o!%`WFGZY_b zBR0edVo+WM>lG0=te#ie^C49SX2l%X=LfMMw} zEGBlCW+E|M!NqC7Q$k;p0woOM9WNb$v zXd_)(+#yI$)Nr!czv-b@Bxtel;?ciMuoaC|2XfIMcQ|XJ6s`Rwz%20c2n4T347@c1 zD^8jOtt}>%AX?G0PV$J}i7^DR5}_W`75^^!NO{3eXbZm&_K{M%pVAYYdZHs`=f6@E zn#X6+3o@YvCJyx@`h~EZVL4{-hM-x*s#N2kCFHn>Rcy$GD_|BaoQhapPT-1Gxpw*R zK>t=NQeAo;VEYgt6>aC^09fKJ;SAn@tJ6nn4w0W8(1U8?^!F&j5adC%#W$TR&KBT7 zwbw{jXvLV6e^5h-XYj_hWEfS$>6283l8Pbq_&F%mIx_il;c~Jm9t_930xd`3hHfyw z{DZ-+*hPOIp>rn?hkX%6+Q@HC4h53ku{uIPkvqmHQBa1DL(W6Lw8x3($v|*$ z?ZIt1Lx+60JfSJQx(_MiYkY>)l0^(Wm#39FQ>5TAM9bb5L5pkuEqna%6*I1=6jqNi z0klFM!A8SCD%gVO!uhk8wv4xhJVe|VH5O8DSzuZ@x`0-5Yntn3U&?Fk*W|ttHY#?6 z;{C|{!e3SBlX@(cc52Kjvi2Y6MX#T%unJ$CXkO;3dttmu9(Fsfy^^WlmbaJqeViIT zKx(^fF6BHjw&n}C@>wUINcOb4K_5D$-5gzxJt;n}?PxLA&-_b3a zo^6_GISYR@z6=G-XKxaOp1!b5!k<6%HlQr7QLbENu z**))fAG6K&I6R%A$aQ<4w7AG$dorcHv$@CJ;*WuFBO=-1WV4IHacLsgW>o>o- z{^5B8|Mm!0QAwdtC=?1s3daaP>E1E^XLN(^r+&fE5*MzA)^85e1@!<+<7ebj)Ah^; zLd(kIjPl<%$c2@8Wls0ge=z8o$HhJM5KGd@5@Z4O5KH1^8m_2^Sd#4am{m8d{~Qi# zZ|G+llC-r1#LE1!9nM58X~|Aoq3SOSMpl((u1Xgv(K8Zq>3+QtjMrQ5P4!Pt8HJ2B zn8Md3ICQ").css({position:"absolute",top:0,left:0,height:1,width:1,overflow:"hidden"}).append(h("
    ").css({position:"absolute", top:1,left:1,width:100,overflow:"scroll"}).append(h('
    ').css({width:"100%",height:10}))).appendTo("body"),c=b.find(".test");a.bScrollOversize=100===c[0].offsetWidth;a.bScrollbarLeft=1!==Math.round(c.offset().left);b.remove()}function hb(a,b,c,e,d,f){var g,j=!1;c!==k&&(g=c,j=!0);for(;e!==d;)a.hasOwnProperty(e)&&(g=j?b(g,a[e],e,a):a[e],j=!0,e+=f);return g}function Fa(a,b){var c=m.defaults.column,e=a.aoColumns.length,c=h.extend({},m.models.oColumn,c,{nTh:b?b:Q.createElement("th"),sTitle:c.sTitle? c.sTitle:b?b.innerHTML:"",aDataSort:c.aDataSort?c.aDataSort:[e],mData:c.mData?c.mData:e,idx:e});a.aoColumns.push(c);c=a.aoPreSearchCols;c[e]=h.extend({},m.models.oSearch,c[e]);ka(a,e,h(b).data())}function ka(a,b,c){var b=a.aoColumns[b],e=a.oClasses,d=h(b.nTh);if(!b.sWidthOrig){b.sWidthOrig=d.attr("width")||null;var f=(d.attr("style")||"").match(/width:\s*(\d+[pxem%]+)/);f&&(b.sWidthOrig=f[1])}c!==k&&null!==c&&(fb(c),H(m.defaults.column,c),c.mDataProp!==k&&!c.mData&&(c.mData=c.mDataProp),c.sType&& @@ -135,7 +135,7 @@ i.append(j));i.detach();k.detach();b.aaSorting=[];b.aaSortingFixed=[];xa(b);h(l) sSortingClass:null,sSortingClassJUI:null,sTitle:null,sType:null,sWidth:null,sWidthOrig:null};m.defaults={aaData:null,aaSorting:[[0,"asc"]],aaSortingFixed:[],ajax:null,aLengthMenu:[10,25,50,100],aoColumns:null,aoColumnDefs:null,aoSearchCols:[],asStripeClasses:null,bAutoWidth:!0,bDeferRender:!1,bDestroy:!1,bFilter:!0,bInfo:!0,bJQueryUI:!1,bLengthChange:!0,bPaginate:!0,bProcessing:!1,bRetrieve:!1,bScrollCollapse:!1,bServerSide:!1,bSort:!0,bSortMulti:!0,bSortCellsTop:!1,bSortClasses:!0,bStateSave:!1, fnCreatedRow:null,fnDrawCallback:null,fnFooterCallback:null,fnFormatNumber:function(a){return a.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.oLanguage.sThousands)},fnHeaderCallback:null,fnInfoCallback:null,fnInitComplete:null,fnPreDrawCallback:null,fnRowCallback:null,fnServerData:null,fnServerParams:null,fnStateLoadCallback:function(a){try{return JSON.parse((-1===a.iStateDuration?sessionStorage:localStorage).getItem("DataTables_"+a.sInstance+"_"+location.pathname))}catch(b){}},fnStateLoadParams:null, fnStateLoaded:null,fnStateSaveCallback:function(a,b){try{(-1===a.iStateDuration?sessionStorage:localStorage).setItem("DataTables_"+a.sInstance+"_"+location.pathname,JSON.stringify(b))}catch(c){}},fnStateSaveParams:null,iStateDuration:7200,iDeferLoading:null,iDisplayLength:10,iDisplayStart:0,iTabIndex:0,oClasses:{},oLanguage:{oAria:{sSortAscending:": activate to sort column ascending",sSortDescending:": activate to sort column descending"},oPaginate:{sFirst:"First",sLast:"Last",sNext:"Next",sPrevious:"Previous"}, -sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)",sInfoPostFix:"",sDecimal:"",sThousands:",",sLengthMenu:"Show _MENU_ entries",sLoadingRecords:"Loading...",sProcessing:"Processing...",sSearch:"Search:",sSearchPlaceholder:"",sUrl:"",sZeroRecords:"No matching records found"},oSearch:h.extend({},m.models.oSearch),sAjaxDataProp:"data",sAjaxSource:null,sDom:"lfrtip",searchDelay:null, +sEmptyTable:"",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)",sInfoPostFix:"",sDecimal:"",sThousands:",",sLengthMenu:"Show _MENU_ entries",sLoadingRecords:"Loading...",sProcessing:"Processing...",sSearch:"Search:",sSearchPlaceholder:"",sUrl:"",sZeroRecords:""},oSearch:h.extend({},m.models.oSearch),sAjaxDataProp:"data",sAjaxSource:null,sDom:"lfrtip",searchDelay:null, sPaginationType:"simple_numbers",sScrollX:"",sScrollXInner:"",sScrollY:"",sServerMethod:"GET",renderer:null};W(m.defaults);m.defaults.column={aDataSort:null,iDataSort:-1,asSorting:["asc","desc"],bSearchable:!0,bSortable:!0,bVisible:!0,fnCreatedCell:null,mData:null,mRender:null,sCellType:"td",sClass:"",sContentPadding:"",sDefaultContent:null,sName:"",sSortDataType:"std",sTitle:null,sType:null,sWidth:null};W(m.defaults.column);m.models.oSettings={oFeatures:{bAutoWidth:null,bDeferRender:null,bFilter:null, bInfo:null,bLengthChange:null,bPaginate:null,bProcessing:null,bServerSide:null,bSort:null,bSortMulti:null,bSortClasses:null,bStateSave:null},oScroll:{bCollapse:null,iBarWidth:0,sX:null,sXInner:null,sY:null},oLanguage:{fnInfoCallback:null},oBrowser:{bScrollOversize:!1,bScrollbarLeft:!1},ajax:null,aanFeatures:[],aoData:[],aiDisplay:[],aiDisplayMaster:[],aoColumns:[],aoHeader:[],aoFooter:[],oPreviousSearch:{},aoPreSearchCols:[],aaSorting:null,aaSortingFixed:[],asStripeClasses:null,asDestroyStripes:[], sDestroyWidth:0,aoRowCallback:[],aoHeaderCallback:[],aoFooterCallback:[],aoDrawCallback:[],aoRowCreatedCallback:[],aoPreDrawCallback:[],aoInitComplete:[],aoStateSaveParams:[],aoStateLoadParams:[],aoStateLoaded:[],sTableId:"",nTable:null,nTHead:null,nTFoot:null,nTBody:null,nTableWrapper:null,bDeferLoading:!1,bInitialised:!1,aoOpenRows:[],sDom:null,searchDelay:null,sPaginationType:"two_button",iStateDuration:0,aoStateSave:[],aoStateLoad:[],oSavedState:null,oLoadedState:null,sAjaxSource:null,sAjaxDataProp:null,