Emergency po
This commit is contained in:
parent
d72d407ed3
commit
92e57c6c05
@ -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');
|
||||
|
||||
|
||||
|
||||
|
||||
@ -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 */
|
||||
|
||||
@ -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');
|
||||
|
||||
720
application/controllers/emergencypurchaseorder.php
Normal file
720
application/controllers/emergencypurchaseorder.php
Normal file
@ -0,0 +1,720 @@
|
||||
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
require APPPATH . '/libraries/BaseController.php';
|
||||
|
||||
/**
|
||||
* Class : purchaseorder (PurchaseorderController)
|
||||
* User Class to control all user related operations.
|
||||
* @author : VenbaMail Mali
|
||||
* @version : 1.1
|
||||
* @since : 15 Feb 2016
|
||||
*/
|
||||
class emergencypurchaseorder extends BaseController
|
||||
{
|
||||
/**
|
||||
* This is default constructor of the class
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
$this->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 = "<option value='-1'>Select Cost center</option>";
|
||||
$BudAmount = "";
|
||||
if(count($CostList) > 0)
|
||||
{
|
||||
for ($j = 0; $j < count($CostList); $j++)
|
||||
{
|
||||
$Code = $CostList[$j]['CostCenterCode'];
|
||||
$Name = $CostList[$j]['CostCenterName'];
|
||||
$HTML .="<option value='".$Code."'>".$Code."-".$Name."</option>";
|
||||
}
|
||||
}
|
||||
$MaterialDetails = $this->purchaseorder_model->getRawMaterialListForPO($MatType,$ReqNo);
|
||||
|
||||
$HTML1 = "<option value='-1'>Select Material Type</option>";
|
||||
|
||||
if(count($MaterialDetails) > 0)
|
||||
{
|
||||
for ($j = 0; $j < count($MaterialDetails); $j++)
|
||||
{
|
||||
$Code = $MaterialDetails[$j]['MaterialCode'];
|
||||
$Name = $MaterialDetails[$j]['MaterialName'];
|
||||
$HTML1 .="<option value='".$Code."'>".$Code."-".$Name."</option>";
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
// 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 = "<option value='0'>Select Requistion Status</option>";
|
||||
if(count($data) > 0)
|
||||
{
|
||||
for ($j = 0; $j < count($data); $j++)
|
||||
{
|
||||
$Code = $data[$j]['StatusCode'];
|
||||
$Name = $data[$j]['StatusName'];
|
||||
$HTML .="<option value='".$Code."'>".$Code."-".$Name."</option>";
|
||||
}
|
||||
}
|
||||
//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.="<tr id='".$i."'>
|
||||
<td align='left'><input type='checkbox' name='chk'".$i." id='chk'".$i."/></td>
|
||||
<td align='left'><a data-toggle='modal' data-target='#myModal'><u>". $ReqNo."</u></a></td>
|
||||
|
||||
<td align='left'>".$ReqType."</td>
|
||||
|
||||
<td align='left'>".$Reqedby."</td>
|
||||
<td align='left'>".$ReqDate."</td>
|
||||
<td align='left'>".$Status."</td>
|
||||
<td align='left'>".$Department."</td>
|
||||
<td align='left'>".$Designation."</td>
|
||||
</tr>";
|
||||
}
|
||||
//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.="<tr id='".$i."'>
|
||||
<td align='left'>".$SNo."</td>
|
||||
<td align='left'>". $MaterialCode."</td>
|
||||
|
||||
<td align='left'>".$MaterialName."</td>
|
||||
|
||||
<td align='left'>".$UOM."</td>
|
||||
<td align='left'>".$Quantity."</td>
|
||||
</tr>";
|
||||
|
||||
//$index = $index + 1;
|
||||
|
||||
}
|
||||
|
||||
$CostCenter = "<option value='-1'>Select Cost center</option>";
|
||||
if(count($CostList) > 0)
|
||||
{
|
||||
for ($j = 0; $j < count($CostList); $j++)
|
||||
{
|
||||
$Code = $CostList[$j]['CostCenterCode'];
|
||||
$Name = $CostList[$j]['CostCenterName'];
|
||||
$CostCenter .="<option value='".$Code."'>".$Code."-".$Name."</option>";
|
||||
}
|
||||
}
|
||||
//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;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
@ -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');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
@ -44,9 +44,7 @@ class purchaseorderform extends BaseController
|
||||
}
|
||||
function alternatepo()
|
||||
{
|
||||
|
||||
|
||||
|
||||
|
||||
$this->global['pageTitle'] = 'Siddharth : Alternate PO';
|
||||
|
||||
$this->loadViews("alterpurchaseorder", $this->global, NULL);
|
||||
|
||||
@ -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 "<script>alert('Successfully updated the Requistion details!');</script>";
|
||||
|
||||
|
||||
|
||||
@ -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);
|
||||
|
||||
282
application/controllers/servicepurchaseorder.php
Normal file
282
application/controllers/servicepurchaseorder.php
Normal file
@ -0,0 +1,282 @@
|
||||
<?php if(!defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
require APPPATH . '/libraries/BaseController.php';
|
||||
|
||||
/**
|
||||
* Class : purchaseorder (PurchaseorderController)
|
||||
* User Class to control all user related operations.
|
||||
* @author : VenbaMail Mali
|
||||
* @version : 1.1
|
||||
* @since : 15 Feb 2016
|
||||
*/
|
||||
class servicepurchaseorder extends BaseController
|
||||
{
|
||||
/**
|
||||
* This is default constructor of the class
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
parent::__construct();
|
||||
$this->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);
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
@ -1,35 +1,66 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
|
||||
|
||||
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
|
||||
|
||||
@ -1,67 +1,127 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
|
||||
|
||||
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
|
||||
|
||||
1376
application/logs/log-2017-05-24.php
Normal file
1376
application/logs/log-2017-05-24.php
Normal file
File diff suppressed because it is too large
Load Diff
227
application/logs/log-2017-05-25.php
Normal file
227
application/logs/log-2017-05-25.php
Normal file
@ -0,0 +1,227 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
|
||||
|
||||
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
|
||||
108
application/logs/log-2017-05-26.php
Normal file
108
application/logs/log-2017-05-26.php
Normal file
@ -0,0 +1,108 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
|
||||
|
||||
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
|
||||
73
application/logs/log-2017-05-27.php
Normal file
73
application/logs/log-2017-05-27.php
Normal file
@ -0,0 +1,73 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
|
||||
|
||||
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
|
||||
217
application/logs/log-2017-05-29.php
Normal file
217
application/logs/log-2017-05-29.php
Normal file
@ -0,0 +1,217 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
|
||||
|
||||
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
|
||||
418
application/logs/log-2017-05-30.php
Normal file
418
application/logs/log-2017-05-30.php
Normal file
@ -0,0 +1,418 @@
|
||||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
|
||||
|
||||
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
|
||||
@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
@ -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();
|
||||
}
|
||||
|
||||
|
||||
263
application/third_party/dompdf/lib/fonts/log.htm
vendored
263
application/third_party/dompdf/lib/fonts/log.htm
vendored
@ -1,4 +1,4 @@
|
||||
<span style='color: #900'>2,048 KB</span> <span style='color: #090'>474.9031 ms</span><br /><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
<span style='color: #900'>4,096 KB</span> <span style='color: #090'>478.2550 ms</span><br /><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
@ -7,4 +7,265 @@
|
||||
<p>Filename: include/style.cls.php</p>
|
||||
<p>Line Number: 948</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
|
||||
|
||||
<h4>A PHP Error was encountered</h4>
|
||||
|
||||
<p>Severity: Warning</p>
|
||||
<p>Message: A non-numeric value encountered</p>
|
||||
<p>Filename: include/page_frame_decorator.cls.php</p>
|
||||
<p>Line Number: 464</p>
|
||||
|
||||
</div>
|
||||
File diff suppressed because it is too large
Load Diff
@ -57,11 +57,11 @@
|
||||
|
||||
if($statusCode == PO_DRAFT)
|
||||
{?>
|
||||
<td> <a data-toggle="tooltip" href="<?php echo base_url().'EditServicePO?PONO='.$record->PONO.'&ReqType='.$record->ReqType; ?>" ><i class="fa fa-pencil" data-toggle="tooltip" title="<?php echo $record->PONO; ?> - Click here to Edit Purchase Order details"></i> </a> <a data-toggle="tooltip" ><span class="glyphicon glyphicon-trash" title="<?php echo $record->PONO; ?> - Click here to Delete Purchase Order details"></span></a> </td>
|
||||
<td> <a data-toggle="tooltip" href="<?php echo base_url().'EditPO?PONO='.$record->PONO.'&ReqType='.$record->ReqType; ?>" ><i class="fa fa-pencil" data-toggle="tooltip" title="<?php echo $record->PONO; ?> - Click here to Edit Purchase Order details"></i> </a> </td>
|
||||
<?php
|
||||
} else {?>
|
||||
<td> <a data-toggle="tooltip" href="#"><i class="fa fa-eye" data-toggle="tooltip" title="<?php echo $record->PONO; ?> - Click here to view Purchase Order details"></i> </a> </td>
|
||||
<?php
|
||||
<td> <a data-toggle="tooltip" href="<?php echo base_url().'EditPO?PONO='.$record->PONO.'&ReqType='.$record->ReqType; ?>"><i class="fa fa-eye" data-toggle="tooltip" title="<?php echo $record->PONO; ?> - Click here to view Purchase Order details"></i> </a> <a data-toggle="tooltip" href="<?php echo base_url().'purchaseorder/CreatePOPrint?PONO='.$record->PONO.'&ReqType='.$record->ReqType; ?>"><i class="fa fa-print" data-toggle="tooltip" title="<?php echo $record->PONO; ?> - Click here to Print the Purchase Order details"></i> </a> </td>
|
||||
<?php
|
||||
}?>
|
||||
</tr>
|
||||
<?php
|
||||
|
||||
@ -270,7 +270,7 @@ $(function() {
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="table-responsive">
|
||||
<table id="BudgetTable" class="table table-striped responsive-utilities jambo_table" style="display:none;">
|
||||
<table id="BudgetTable" class="table table-striped responsive-utilities jambo_table" >
|
||||
<thead style="background-color: #CFCFCF;">
|
||||
|
||||
<th>Budget Type</th>
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -2,10 +2,21 @@
|
||||
<script>
|
||||
|
||||
</script>
|
||||
<style>
|
||||
.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;}
|
||||
|
||||
</style>
|
||||
<style>
|
||||
.dataTables_paginate
|
||||
{
|
||||
margin-top: -5%;
|
||||
}
|
||||
.dataTables_wrapper
|
||||
{
|
||||
padding-bottom: 0px;
|
||||
margin-top: -3%;
|
||||
}
|
||||
.content-wrapper
|
||||
{
|
||||
min-height: 733px;
|
||||
}
|
||||
</style>
|
||||
<div class="content-wrapper">
|
||||
<?php
|
||||
$attributes = array('class' => 'form-label-left CreatePO ','name' => 'CreatePO','id' => 'CreatePO','method' => 'post','role' => 'form' );
|
||||
@ -44,7 +55,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label>Requistion Status</label>
|
||||
<label>Requested Status</label>
|
||||
<div>
|
||||
<?php
|
||||
$StList = array("0"=>'Select Requistion Status');
|
||||
@ -67,7 +78,7 @@
|
||||
<div class="col-md-3">
|
||||
<!-- Date range -->
|
||||
<div class="form-group">
|
||||
<label>Requistion Date range:</label>
|
||||
<label>Requested Date range:</label>
|
||||
|
||||
<div class="input-group">
|
||||
<div class="input-group-addon">
|
||||
@ -78,17 +89,25 @@
|
||||
<!-- /.input group -->
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3" >
|
||||
<br/>
|
||||
<a class="btn btn-primary" onclick="Search()" >Search</a>
|
||||
<a class="btn btn-primary" onclick="Reset()" >Clear</a>
|
||||
<p>
|
||||
<div align="right" style="padding-right:10px">
|
||||
<!--<a href="<?php echo base_url(); ?>purchaseorderform/purchaseorder">
|
||||
<button type="button" class="btn btn-primary">Create PO</button></a> -->
|
||||
<input type="submit" class="btn btn-primary" onclick="return Validate();" value="Create Purchase Order">
|
||||
<input type="hidden" name="txtReqNo" id="txtReqNo" />
|
||||
|
||||
</div></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container-fluid">
|
||||
<div align="right">
|
||||
|
||||
<a class="btn btn-primary" onclick="Search()" >Search</a>
|
||||
<a class="btn btn-primary" onclick="Reset()" >Clear</a>
|
||||
</div><br/>
|
||||
|
||||
|
||||
|
||||
<div class="modal fade" id="myModal" role="dialog">
|
||||
@ -123,7 +142,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<label>Desigination</label>
|
||||
<label>Designation</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'Desigination','value' => set_value('Desigination'),'id'=>'Desigination', 'class' => 'form-control' ,'readonly' => 'true');
|
||||
@ -135,7 +154,7 @@
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
<label>Requisition Date</label>
|
||||
<label>Requested Date</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'RequistionDate','value' => set_value('RequistionDate'),'id'=>'RequistionDate', 'class' => 'form-control' ,'readonly' => 'true');
|
||||
@ -160,7 +179,7 @@
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<label>Available Budget Amount</label>
|
||||
<label>Avl Budget Amt</label> <img id="AlertImg" src="<?php echo base_url(); ?>assets/dist/img/red.png" alt="your image" width="25px" style="display:none"/>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'AvlBudgetAmount','value' => set_value('AvlBudgetAmount'),'id'=>'AvlBudgetAmount', 'class' => 'form-control' ,'readonly' => 'true');
|
||||
@ -209,18 +228,19 @@
|
||||
</div>
|
||||
|
||||
|
||||
<table class="table table-bordered editableTable" style="border:1px solid #333">
|
||||
<table id="REQLIST" class="table table-bordered table-hover" style="background-color:#fff;font-size:12px;">
|
||||
|
||||
<div align="right" style="padding-right:10px">
|
||||
|
||||
<div class="modal fade" role="dialog">
|
||||
|
||||
<thead style="background-color:#fff">
|
||||
<thead style="background-color:#ddf">
|
||||
<tr>
|
||||
<th>Select</th>
|
||||
<th>Requistion Number</th>
|
||||
<th>Requistion Type </th>
|
||||
<th>Requisted By</th>
|
||||
<th>ReqDate</th>
|
||||
<th>Requested By</th>
|
||||
<th>Requested Date</th>
|
||||
<th>Status</th>
|
||||
<th>Department</th>
|
||||
<th>Designation</th>
|
||||
@ -239,7 +259,11 @@
|
||||
<td><a data-toggle="modal" data-target="#myModal" data-id="<%=index%>" data-userid="<?php echo $record->ReqNo ?>"><u><?php echo $record->ReqNo; ?> </u></a></td>
|
||||
<td><?php echo $record->ReqType; ?></td>
|
||||
<td><?php echo $record->FirstName; ?></td>
|
||||
<td><?php echo $record->ReqDate; ?></td>
|
||||
<td><?php
|
||||
$dt = new DateTime($record->ReqDate);
|
||||
$RequestedDate = $dt->format('d-m-Y');
|
||||
echo $RequestedDate;
|
||||
?></td>
|
||||
<td><?php echo $record->StatusName; ?></td>
|
||||
<td><?php echo $record->DepartmentName; ?></td>
|
||||
<td><?php echo $record->Designation; ?></td>
|
||||
@ -254,14 +278,13 @@
|
||||
</table>
|
||||
|
||||
|
||||
<div align="right" style="padding-right:10px">
|
||||
<!--<a href="<?php echo base_url(); ?>purchaseorderform/purchaseorder">
|
||||
<button type="button" class="btn btn-primary">Create PO</button></a> -->
|
||||
<input type="submit" class="btn btn-primary" value="Create Purchase Order">
|
||||
<input type="hidden" name="txtReqNo" id="txtReqNo" />
|
||||
<div align="right" >
|
||||
|
||||
<!-- <input type="submit" class="btn btn-primary" onclick="return Validate();" value="Create Purchase Order"> -->
|
||||
|
||||
|
||||
</div>
|
||||
<br>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -501,17 +524,32 @@ $('#CostCenter').change(function() {
|
||||
if(id != '-1')
|
||||
{
|
||||
$('#content').loader('show');
|
||||
|
||||
$.ajax({
|
||||
$.ajax({
|
||||
data:{id:id},
|
||||
dataType: 'json',
|
||||
type:"POST",
|
||||
url:"<?php echo base_url();?>requisitionform/getAvailableBudAmount?ReqType="+ReqType,
|
||||
success:function(json) {
|
||||
$('#content').loader('hide');
|
||||
$("#AvlBudgetAmount").val(json.Cost[0]['BudgetAmount']);
|
||||
|
||||
}
|
||||
url:"<?php echo base_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
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
@ -62,19 +62,20 @@ if(!empty($PODetail))
|
||||
<!-- Content Header (Page header) -->
|
||||
<div>
|
||||
<h4>
|
||||
Survey NO: 168/1C3,
|
||||
<h3> Siddharth Industries</h3><br/>
|
||||
Survey NO: 168/1C3,<br/>
|
||||
Pennalur Pet Road,
|
||||
Goonipalyam village,<br/>
|
||||
Goonipalyam village,<br/>
|
||||
Uthukottai Taluk,
|
||||
Tiruvallur Dist,
|
||||
Tamilnadu,Pin code : 602026. <br/>
|
||||
Tiruvallur Dist,<br/>
|
||||
Tamilnadu,Pin code : 602026.<br/>
|
||||
Email: customersupport@sidharthindustries.com
|
||||
</h4>
|
||||
</div>
|
||||
|
||||
<section class="content-header">
|
||||
<center>
|
||||
<h1><b>Purchase Order - <?php echo $PONO ?> </b> </h1>
|
||||
<h1><b>Purchase Order - <?php echo $PONO ?> </b> </h1>
|
||||
</center>
|
||||
</section>
|
||||
<section class="content">
|
||||
|
||||
3881
application/views/editRevenuepurchaseorder.php
Normal file
3881
application/views/editRevenuepurchaseorder.php
Normal file
File diff suppressed because it is too large
Load Diff
@ -1,8 +1,4 @@
|
||||
|
||||
Currently editing:
|
||||
/home/kasiram9/public_html/sidd_uat/application/views/editrequisitionform.php
|
||||
Encoding: Reopen Switch to Code Editor Close Save
|
||||
|
||||
<?php
|
||||
$ReqNo = '';
|
||||
$ReqType = '';
|
||||
@ -121,20 +117,22 @@ if(!empty($ReqDetails))
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>Available Budget Amount</label>
|
||||
<label>Available Budget Amount</label> <img id="AlertImg" src="<?php echo base_url(); ?>assets/dist/img/red.png" alt="your image" width="25px" style="display:none"/>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'AvlBudgetAmount','value' => set_value('AvlBudgetAmount'),'id'=>'AvlBudgetAmount', 'class' => 'form-control' ,'readonly' => 'true');
|
||||
echo form_input($data);
|
||||
?>
|
||||
?>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="container-fluid">
|
||||
<table class="table table-bordered" style="border:1px solid #333">
|
||||
<div align="right" style="padding-right:10px">
|
||||
@ -285,8 +283,8 @@ if(!empty($ReqDetails))
|
||||
|
||||
</div></br>
|
||||
|
||||
<table id="Items" class="table table-striped responsive-utilities jambo_table" >
|
||||
<thead style="background-color: #CFCFCF;">
|
||||
<table id="Items" class="table table-bordered table-hover" style="background-color:#fff;font-size:12px;">
|
||||
<thead style="background-color:#ddf">
|
||||
<tr>
|
||||
<th>SNo</th>
|
||||
<th>Material Code</th>
|
||||
@ -338,15 +336,16 @@ if(!empty($ReqDetails))
|
||||
<input type="hidden" name="txtDeletedRow" id="txtDeletedRow" />
|
||||
<?php if($Status == REQ_DRAFT)
|
||||
{ ?>
|
||||
<a class="btn btn-primary Save" ID="Save" onclick="Save()" > <span class="bold">Save</span></a>
|
||||
<input type="submit" class="btn btn-primary" value="Submit">
|
||||
<a class="btn btn-primary Save" ID="Save" onclick="Save(0)" > <span class="bold">Save</span></a>
|
||||
<a class="btn btn-primary submit" ID="submit" onclick="Save(1)" > <span class="bold">Submit</span></a>
|
||||
|
||||
<input type="reset" class="btn btn-primary">
|
||||
<?php }
|
||||
else if($Status == REQ_PENDING_APPROVAL)
|
||||
{?>
|
||||
<!--<a class="btn btn-primary" ID="update" onclick="update()" > <span class="bold">Update</span></a>
|
||||
<a class="btn btn-primary" href="<?php echo base_url(); ?>Requisition" ID="cancel"> <span class="bold">Cancel</span></a> -->
|
||||
<input type="submit" class="btn btn-primary" value="Update">
|
||||
<a class="btn btn-primary Save" ID="submit" onclick="Save(1)" > <span class="bold">Update</span></a>
|
||||
<input type="reset" class="btn btn-primary">
|
||||
<?php } ?>
|
||||
|
||||
@ -388,17 +387,31 @@ $('#CostCenter').change(function() {
|
||||
if(id != '-1')
|
||||
{
|
||||
$('#content').loader('show');
|
||||
|
||||
$.ajax({
|
||||
$.ajax({
|
||||
data:{id:id},
|
||||
dataType: 'json',
|
||||
type:"POST",
|
||||
url:"<?php echo base_url();?>requisitionform/getAvailableBudAmount?ReqType="+ReqType,
|
||||
success:function(json) {
|
||||
$('#content').loader('hide');
|
||||
$("#AvlBudgetAmount").val(json.Cost[0]['BudgetAmount']);
|
||||
|
||||
}
|
||||
url:"<?php echo base_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:"<?php echo base_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 = '<?php echo REQ_DRAFT;?>'
|
||||
if(status == '0')
|
||||
{
|
||||
stat = '<?php echo REQ_DRAFT; ?>';
|
||||
}
|
||||
else
|
||||
{
|
||||
stat = '<?php echo REQ_PENDING_APPROVAL; ?>';
|
||||
}
|
||||
|
||||
|
||||
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:"<?php echo base_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
|
||||
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
@ -1,8 +1,6 @@
|
||||
<style>
|
||||
.modal{
|
||||
padding-right: 25% ! important;
|
||||
}
|
||||
</style>
|
||||
.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;}
|
||||
</style>
|
||||
<div class="content-wrapper">
|
||||
|
||||
|
||||
@ -13,29 +11,30 @@
|
||||
<div class="container-fluid">
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-3">
|
||||
<label>Requistion No</label>
|
||||
<div>
|
||||
<div class="col-md-3">
|
||||
<label>Requistion No</label>
|
||||
<div class="form-control">
|
||||
<?php
|
||||
$options = array("0"=>'Requistion No');
|
||||
//print_r( $options);
|
||||
|
||||
<?php
|
||||
|
||||
$options = array("0"=>'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;
|
||||
|
||||
?>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<label>Purchase Order Date</label>
|
||||
endforeach;
|
||||
}
|
||||
|
||||
echo form_dropdown('MaterialCode', $options,set_value('MaterialCode'),'id="MaterialCode"' ,'class="form-control required"','required="true"');
|
||||
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label>PO Date</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'required' => 'true');
|
||||
@ -43,32 +42,7 @@
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-9">
|
||||
<div class="col-md-4">
|
||||
<label>Supplier</label>
|
||||
<div >
|
||||
<?php
|
||||
$options = array("0"=>'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');
|
||||
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<div class="col-md-3">
|
||||
<label>Purchase Order Type</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
@ -77,9 +51,10 @@
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
<label>Select Currency</label>
|
||||
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>Select Currency Type</label>
|
||||
<div class="form-control">
|
||||
<?php
|
||||
$options = array("0"=>'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"');
|
||||
|
||||
?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-2">
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-3">
|
||||
<label>Exchange Rate</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
@ -108,69 +85,71 @@
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
<div class="col-md-3">
|
||||
<label>Supplier</label>
|
||||
<div class="form-control">
|
||||
<?php
|
||||
$options = array("0"=>'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"');
|
||||
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label>Address</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => '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);
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<label>Delivery Address</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'DeliveryAddr','value' => set_value('DeliveryAddr'),'id'=>'DeliveryAddr', 'class' => 'form-control' ,'required' => 'true' ,'rows' => '3', 'cols' => '40');
|
||||
echo Form_textarea($data);
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<label>Delivery Date</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'Deliverydt','value' => set_value('Deliverydt'),'id'=>'Deliverydt', 'class' => 'form-control datePicker' ,'required' => 'true');
|
||||
echo form_input($data);
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="col-md-3">
|
||||
<label>Country</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'Quantity','value' => set_value('Quantity'),'id'=>'Quantity', 'class' => 'form-control' ,'required' => 'true');
|
||||
echo form_input($data);
|
||||
?>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container-fluid">
|
||||
<table class="table table-bordered" style="border:1px solid #333">
|
||||
<div align="right">
|
||||
<div align="right" style="padding-right:10px">
|
||||
<div align="right">
|
||||
<a data-toggle="modal" data-target="#myModal"><button type="button" style="margin: 0px 0px -30px 0px;" class="btn btn-primary" data-dismiss="modal" >Add Line Item</button> </a>
|
||||
<a data-toggle="modal" data-target="#myModal1"><button type="button" class="btn btn-primary" data-dismiss="modal" >Add Line Item</button> </a>
|
||||
|
||||
<div class="modal fade" id="myModal" role="dialog">
|
||||
<div class="modal fade" id="myModal1" role="dialog">
|
||||
<div class="modal-dialog">
|
||||
<!-- Modal content-->
|
||||
<form>
|
||||
<center>
|
||||
<div class="modal-content" style="width:900px;">
|
||||
<div class="modal-header" style="background-color: #3c8dbc;color:#fff;">
|
||||
<center><h4>Add Import Purchase Order Item</h4></center>
|
||||
<div class="modal-header" style="background-color: #3c8dbc;color:#fff;">
|
||||
<button type="button" class="close" data-dismiss="modal">×</button>
|
||||
<center><h4>Add Item </h4></center>
|
||||
</div>
|
||||
<div align="left">
|
||||
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-3">
|
||||
<label>Req No</label>
|
||||
|
||||
<div class="form-control">
|
||||
<?php
|
||||
$options = array("0"=>'Req No');
|
||||
//print_r( $options);
|
||||
@ -188,7 +167,7 @@
|
||||
echo form_dropdown('MaterialCode', $options,set_value('MaterialCode'),'id="MaterialCode"' ,'required="true"');
|
||||
|
||||
?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-3">
|
||||
@ -222,7 +201,7 @@
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-2">
|
||||
<label>Item Code</label>
|
||||
|
||||
<div class="form-control">
|
||||
<?php
|
||||
$options = array("0"=>'Item Code');
|
||||
//print_r( $options);
|
||||
@ -240,7 +219,7 @@
|
||||
echo form_dropdown('MaterialCode', $options,set_value('MaterialCode'),'id="MaterialCode"' ,'class="form-control required"','required="true"');
|
||||
|
||||
?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="col-md-2">
|
||||
@ -293,7 +272,8 @@
|
||||
|
||||
<div class="col-md-4">
|
||||
<div class="col-md-6">
|
||||
Basic Price in US $ per Ton :
|
||||
Basic Price in US $ per Ton :
|
||||
|
||||
</div>
|
||||
<div class="col-md-6">
|
||||
<div class="form-group">
|
||||
@ -342,11 +322,10 @@
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
<div class="col-md-12" style="border:1px solid #000;">
|
||||
<br/>
|
||||
<div class="col-md-6" style="padding:0%">
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-6">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
Basic Price:
|
||||
</div>
|
||||
@ -367,7 +346,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
Landing charge
|
||||
</div>
|
||||
@ -388,7 +367,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
High seas sales charge
|
||||
</div>
|
||||
@ -409,7 +388,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
Custom duty : (a)
|
||||
</div>
|
||||
@ -430,7 +409,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
Excise duty : (b)
|
||||
</div>
|
||||
@ -451,7 +430,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
Excise duty ED_cess : (C)
|
||||
</div>
|
||||
@ -472,7 +451,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
Excise duty S & H cess :(d)
|
||||
</div>
|
||||
@ -493,7 +472,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
Custom ED_cess : (e)
|
||||
</div>
|
||||
@ -514,7 +493,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
Custom S & H cess : (f)
|
||||
</div>
|
||||
@ -536,8 +515,8 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6" style="padding:0%">
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-6">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
Additional Excise duty : (g)
|
||||
</div>
|
||||
@ -558,7 +537,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-8">
|
||||
Gross duty payable
|
||||
</div>
|
||||
@ -571,7 +550,7 @@
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-8">
|
||||
Available Modvat set-off on import :
|
||||
</div>
|
||||
@ -585,7 +564,7 @@
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-12">
|
||||
|
||||
<div class="col-md-8">
|
||||
Gross expenses due to custom duty:
|
||||
@ -604,7 +583,7 @@
|
||||
<center> <label>Cost of the product Per KG</label></center>
|
||||
<hr/>
|
||||
</div>
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
purchase rate [Basic]
|
||||
</div>
|
||||
@ -627,7 +606,7 @@
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-12">
|
||||
|
||||
<div class="col-md-4">
|
||||
Custom Duty Expenses
|
||||
@ -642,7 +621,7 @@
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-md-12" style="padding:0%">
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
RMC Including Customers
|
||||
</div>
|
||||
@ -665,12 +644,11 @@
|
||||
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-primary" value="submit">Add</button>
|
||||
<button type="button" class="btn btn-primary" value="submit" data-dismiss="modal">Cancel</button>
|
||||
<button type="button" class="btn btn-default" value="submit">Add</button>
|
||||
<button type="button" class="btn btn-default" value="submit" data-dismiss="modal">Cancel</button>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</center>
|
||||
</form>
|
||||
|
||||
</div>
|
||||
@ -680,67 +658,50 @@
|
||||
|
||||
|
||||
<br/>
|
||||
<div class="box-body" style="margin-top: -5%;">
|
||||
<table id="example2" class="table table-bordered table-hover" style="background-color:#fff;font-size:12px;">
|
||||
<thead style="background-color:#ddf">
|
||||
<tr>
|
||||
<th>SNo</th>
|
||||
<th>Requisition No</th>
|
||||
<th>Item Name</th>
|
||||
<th>Quantity</th>
|
||||
<th>UOM</th>
|
||||
<th>Rate</th>
|
||||
<th>Basic Amount</th>
|
||||
<th>Tax Amount</th>
|
||||
<th>Total Order Amount</th>
|
||||
<th>Action</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<!--- Sample static data -->
|
||||
<tr>
|
||||
<td>1</td>
|
||||
<td>Req0004</td>
|
||||
<td>Sand</td>
|
||||
<td>100</td>
|
||||
<td>kgs</td>
|
||||
<td>100</td>
|
||||
<td>10000</td>
|
||||
<td>1000</td>
|
||||
<td>11000</td>
|
||||
<td>Edit</td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td>2</td>
|
||||
<td>Req0008</td>
|
||||
<td>Sand</td>
|
||||
<td>150</td>
|
||||
<td>kgs</td>
|
||||
<td>100</td>
|
||||
<td>15000</td>
|
||||
<td>1000</td>
|
||||
<td>16000</td>
|
||||
<td>Edit</td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td>3</td>
|
||||
<td>Req0016</td>
|
||||
<td>Resin</td>
|
||||
<td>100</td>
|
||||
<td>liter</td>
|
||||
<td>100</td>
|
||||
<td>10000</td>
|
||||
<td>500</td>
|
||||
<td>10500</td>
|
||||
<td>Edit</td>
|
||||
</tr>
|
||||
<!--- /Sample static data -->
|
||||
</tbody>
|
||||
|
||||
</table>
|
||||
</div>
|
||||
<thead style="background-color:#fff">
|
||||
<tr>
|
||||
<th><input type="checkbox" name="name1" /> </th>
|
||||
<th>R No</th>
|
||||
<th>Item Name</th>
|
||||
<th>Quantity</th>
|
||||
<th>UOM</th>
|
||||
<th>Rate</th>
|
||||
<th>Tax %</th>
|
||||
<th>Total</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td><input type="checkbox" name="name2" /> </td>
|
||||
<td>1</td>
|
||||
<td>001</td>
|
||||
<td>Waste Sand</td>
|
||||
<td>Ton</td>
|
||||
<td>100</td>
|
||||
<td>High</td>
|
||||
<td>No Change</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type="checkbox" name="name2" /> </td>
|
||||
<td>2</td>
|
||||
<td>002</td>
|
||||
<td>Resin</td>
|
||||
<td>Litre</td>
|
||||
<td>50</td>
|
||||
<td>High</td>
|
||||
<td>Change</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><input type="checkbox" name="name2" /> </td>
|
||||
<td>3</td>
|
||||
<td>003</td>
|
||||
<td>Resin</td>
|
||||
<td>Litre</td>
|
||||
<td>100</td>
|
||||
<td>High</td>
|
||||
<td>Change</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
</table>
|
||||
<div class="col-md-3 col-md-offset-9">
|
||||
@ -761,17 +722,4 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<script>
|
||||
$(function () {
|
||||
|
||||
$('#example2').DataTable({
|
||||
"paging": true,
|
||||
"lengthChange": true,
|
||||
"searching": true,
|
||||
"ordering": true,
|
||||
"info": true,
|
||||
"autoWidth": true
|
||||
});
|
||||
});
|
||||
</script>
|
||||
</div>
|
||||
@ -20,9 +20,7 @@
|
||||
<!-- daterange picker -->
|
||||
<link rel="stylesheet" href="<?php echo base_url(); ?>assets/plugins/daterangepicker/daterangepicker.css">
|
||||
|
||||
<!-- date-range-picker -->
|
||||
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.11.2/moment.min.js"></script>
|
||||
<script src="<?php echo base_url(); ?>assets/plugins/daterangepicker/daterangepicker.js"></script>
|
||||
|
||||
|
||||
<script type="text/javascript" src="<?php echo base_url();?>assets/js/jquery-1.12.4.js"></script>
|
||||
<!-- jquery-1.12.4.min -->
|
||||
@ -292,7 +290,7 @@
|
||||
?>
|
||||
|
||||
<?php
|
||||
if($DEPCode == FINANCE || $role == ROLE_MANAGER)
|
||||
if($DEPCode == FINANCE && $role == ROLE_MANAGER)
|
||||
{
|
||||
?>
|
||||
|
||||
@ -304,7 +302,7 @@
|
||||
{
|
||||
?>
|
||||
<li class="treeview">
|
||||
<a href="<?php echo base_url(); ?>purchaseorderform/alternatepo">
|
||||
<a href="<?php echo base_url(); ?>EmergencyPO">
|
||||
<i class="fa fa-users"></i>
|
||||
<span>Emergency Purchase Order </span>
|
||||
</a>
|
||||
@ -314,7 +312,7 @@
|
||||
}
|
||||
?>
|
||||
<?php
|
||||
if($DEPCode == FINANCE || $role == ROLE_MANAGER)
|
||||
if($DEPCode == FINANCE && $role == ROLE_MANAGER)
|
||||
{
|
||||
?>
|
||||
<li class="treeview">
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
<div style="border:1px solid #000;">Amount chargable (in words)<br/><br/></div>
|
||||
<div style="text-align:right;border:1px solid #000;"> for Siddharth Industries <br/><br/>Authorised Signature</div>
|
||||
<div style="border:1px solid #000;">Amount chargable (in words)<br/><br/><br/><br/></div>
|
||||
<div style="text-align:right;border:1px solid #000;"> for Siddharth Industries <br/><br/><br/>Authorised Signature</div>
|
||||
<div><center>
|
||||
This is Computer Generated Document</center>
|
||||
</div>
|
||||
@ -1,9 +1,4 @@
|
||||
<div>
|
||||
<table>
|
||||
<tr>
|
||||
<td><img width="50" height="50" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABQCAYAAACOEfKtAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA11JREFUeNrsnT9IHEEYxWfFw8rgpUhlo5URi2gTbIUUSrq1ui4oRLRIY9JIKrGKTQrBgJLuuutEi4CtSSOpPIuATdIEcid2YpN9C3sc8c6bf7uZmX0P7k7ultm7337zzXxvZjGaiaIfQoiqoHTUHk6eniSPUbLQUmUoebojB23dDZGBmQiQAAmQAAmQIkACJEACpAiweA3bbvDV5mb6+iKOxfTc3MDjf15dicbBQfr3591d7wBGM1H0J3l9bNLI84UFsby6mkIzFWACJMCafJ9PJyfSx29vbHQuoqJaxl34zc5O+mVtwIPi5EIcXV52IjnoLvx+by/9wXkIF8aHbq0dgYi4vOB1Q7QV2c4BXM4Z3r+RGBTAR9VqmqhVBoZnIyOdx9taTXqQGJ+YUDqXFwBV4WGU69aXRkNsr69LtyEzHfIKIKJCVl9PT3u+/63P+6bnC64SuWm3jdsYn5xkKcdamCJAAiwjQJcHAC8ATs/OBg1Qy0y4ub6WPhb1cuPwUFycn9/77OPWlvXzeQGw2QPGQ9o/PhZrS0v3IPpooFrpwgChYniidq6fnTnvrBSaA3Uc3A/1uvPuSmEA0f0uFLsyBKcZDjaisvSj8DsFW6pbcHPQpV12WQoBCHhri4taEOGwhJAXjeeBgFebn1eyp0LKi1Ym0rCsXieRqLk06HVetFqJwHmWnRz3yotHzabT9n0hpRxGZ0SjjpGKCEQkxgUtWDlbCyMfIi/qTHMgrDf7srCem5mQDS5YQNKRD2vCuQLMhCVM3bwIiK4PLIUYqrp5EXPFeGWFALO8CEdGddId7NYOHWFQUa1cUO4Fty78/fZW6tFrjx7gqfqAT0PbmWAqVCwq+bDUOxMeyokh6L8B1J1kE2BgIkACJMDyAbSx56/cACV3CoyOjfX9rNSrcrI7E/qVYYCnYhKY3LXkJECVOdx+Us51m6Nwm7HVQyUCf4UGEJuFZPMgIhC+XlYfw21WWQ/GxXJ50q09iBS1MSjYW73ww3SXMVXOobsk4MU80GQZc5DQbl5tOzWRRpS8nJqy1tUAzWZ7ecvKDdfdggWfTV0GbdnA4JB1UdhbHjo0LesAS6YWa2GaCQRIgARIESABEiABUgRIgARYRoAVYtBWBfcL/xb8hwS6av8VYADVjF2M5sTWJAAAAABJRU5ErkJggg=="></td>
|
||||
<td> <h2>SIDDHARTH INDUSTRIES</h2> </td><td></td><td></td>
|
||||
<td><span style="text-align:right;"><?php echo "Date : " . date("d/m/y"); ?></span><!--<span> <?php echo "Day: ". date("l"); ?></span>--></td>
|
||||
</tr>
|
||||
</table><br/>
|
||||
<center><h2>SIDDHARTH INDUSTRIES - PURCHASE ORDER</h2></center>
|
||||
<br/><span style="text-align:right;"><?php echo "Date : " . date("d/m/y"); ?> </span><!--<span style="margin-left:700px;"> <?php echo "Day: ". date("l"); ?></span>--><br/>
|
||||
</div>
|
||||
File diff suppressed because it is too large
Load Diff
@ -112,7 +112,7 @@ if(!empty($Emp))
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-3">
|
||||
<label>Available Budget Amount</label>
|
||||
<label>Available Budget Amount</label> <img id="AlertImg" src="<?php echo base_url(); ?>assets/dist/img/red.png" alt="your image" width="25px" style="display:none"/>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'AvlBudgetAmount','value' => set_value('AvlBudgetAmount'),'id'=>'AvlBudgetAmount', 'class' => 'form-control' ,'readonly' => 'true');
|
||||
@ -130,7 +130,7 @@ if(!empty($Emp))
|
||||
<table class="table table-bordered" style="border:1px solid #333">
|
||||
<div align="right" style="padding-right:10px">
|
||||
<div align="right">
|
||||
<a data-toggle="modal" data-target="#myModal1" class="btn btn-primary">Add Line Item</a>
|
||||
<a onclick="return validateBeforeAdd();" class="btn btn-primary">Add Line Item</a>
|
||||
|
||||
<div class="modal fade" id="myModal1" role="dialog">
|
||||
<div class="modal-dialog">
|
||||
@ -199,7 +199,7 @@ if(!empty($Emp))
|
||||
</div>
|
||||
|
||||
<div class="modal-footer">
|
||||
<a class="btn btn-info font addClick" ID="addClick" ><i class="fa fa-plus"></i> <span class="bold">Add</span></a>
|
||||
<a class="btn btn-info font addClick" ID="addClick" ><i class="fa fa-plus"></i> <span class="bold">Add</span></a>
|
||||
<a class="btn btn-info" data-dismiss="modal" value="Cancel">cancel</a>
|
||||
</div>
|
||||
</div>
|
||||
@ -273,8 +273,8 @@ if(!empty($Emp))
|
||||
|
||||
</div></br>
|
||||
|
||||
<table id="Items" class="table table-striped responsive-utilities jambo_table" >
|
||||
<thead style="background-color: #CFCFCF;">
|
||||
<table id="Items" class="table table-bordered table-hover" style="background-color:#fff;font-size:12px;">
|
||||
<thead style="background-color:#ddf">
|
||||
<tr>
|
||||
<th>SNo</th>
|
||||
<th>Material Code</th>
|
||||
@ -308,6 +308,7 @@ if(!empty($Emp))
|
||||
</div>
|
||||
|
||||
<script>
|
||||
var isExceed = 0;
|
||||
function isNumberKey(evt)
|
||||
{
|
||||
var charCode = (evt.which) ? evt.which : evt.keyCode;
|
||||
@ -325,84 +326,66 @@ $(function() {
|
||||
//Initialize Select2 Elements
|
||||
$(".select2").select2();
|
||||
|
||||
$('#EmpID').change(function() {
|
||||
var ReqType = $('#RequestType').val();
|
||||
if(ReqType == "-1")
|
||||
{
|
||||
alert('Please select the Request Type');
|
||||
return false;
|
||||
}
|
||||
var id = $('#EmpID').val();
|
||||
|
||||
if(id != '-1')
|
||||
{
|
||||
$('#content').loader('show');
|
||||
|
||||
$.ajax({
|
||||
data:{id:id},
|
||||
dataType: 'json',
|
||||
type:"POST",
|
||||
url:"<?php echo base_url();?>requisitionform/GetSelectedEmpDetails?ReqType="+ReqType,
|
||||
success:function(json) {
|
||||
$('#content').loader('hide');
|
||||
//alert(json.Cost);
|
||||
$("#DeptName").val(json.emp[0]['DepartmentName']);
|
||||
$("#Designation").val(json.emp[0]['Designation']);
|
||||
|
||||
$("#CostCenter").empty();
|
||||
$("#CostCenter").append(json.Cost);
|
||||
//$("#AvlBudgetAmount").val(json.AvlAmount);
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
alert('Please select the Employee details');
|
||||
return false;
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
|
||||
$('#CostCenter').change(function() {
|
||||
|
||||
var id = $('#CostCenter').val();
|
||||
$("#AvlBudgetAmount").val('');
|
||||
var ReqType = $('#RequestType').val();
|
||||
if(id != '-1')
|
||||
{
|
||||
$('#content').loader('show');
|
||||
|
||||
$.ajax({
|
||||
var ReqType = $('#RequestType').val();
|
||||
|
||||
if(id != '-1' && ReqType != '-1')
|
||||
{
|
||||
|
||||
$('#content').loader('show');
|
||||
$.ajax({
|
||||
data:{id:id},
|
||||
dataType: 'json',
|
||||
type:"POST",
|
||||
url:"<?php echo base_url();?>requisitionform/getAvailableBudAmount?ReqType="+ReqType,
|
||||
success:function(json) {
|
||||
$('#content').loader('hide');
|
||||
$("#AvlBudgetAmount").val(json.Cost[0]['BudgetAmount']);
|
||||
|
||||
}
|
||||
url:"<?php echo base_url() ?>servicepurchaseorder/AvilBudgetAmount?ReqType="+ReqType,
|
||||
success:function(data) {
|
||||
if(data)
|
||||
{
|
||||
$('#content').loader('hide');
|
||||
$("#AvlBudgetAmount").val(data);
|
||||
if(parseFloat($("#AvlBudgetAmount").val()) <= 0)
|
||||
{
|
||||
$('#AlertImg').removeAttr("style");
|
||||
isExceed = 1;
|
||||
}
|
||||
else
|
||||
{
|
||||
$('#AlertImg').attr("style","display:none;");
|
||||
isExceed =0;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$('#content').loader('hide');
|
||||
alert("Error");
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
alert('Please select the Employee details');
|
||||
alert('Please select the Requistion Type');
|
||||
$('#CostCenter').val("-1");
|
||||
return false;
|
||||
}
|
||||
|
||||
});
|
||||
$('#RequestType').change(function()
|
||||
{
|
||||
|
||||
$("#AvlBudgetAmount").val('');
|
||||
$('#AlertImg').attr("style","display:none;");
|
||||
$('#txtRowCount').val('');
|
||||
$('#txtDeletedRow').val('');
|
||||
$("#Description").val('');
|
||||
$("#UOM").val('');
|
||||
$('#CostCenter').val("-1");
|
||||
removeHiddenRows($('#Items').find('tr').length);
|
||||
var id = $('#RequestType').val();
|
||||
|
||||
@ -481,7 +464,7 @@ $("#UOM").val('');
|
||||
|
||||
<td align="left"><%=Quantity%></td>
|
||||
<td>
|
||||
<a data-target='#EditItem' data-id="<%=index%>" data-userid="<%=index%>" data-toggle="modal" href="#EditItem"><i class="fa fa-pencil" data-toggle="tooltip" title="Click here to view/Edit the <%=MaterialCode%> Material details"></i> </a> <a href='#' onclick = "DeleteRow(<%=index%>)" class="link" data-id="<%=index%>" data-userid="<%=index%>" id="Del" ><span class="glyphicon glyphicon-trash"></span></a>
|
||||
<a data-target='#EditItem' data-id="<%=index%>" data-userid="<%=index%>" data-toggle="modal" href="#EditItem"><i class="fa fa-pencil" data-toggle="tooltip" title="Click here to view/Edit the <%=MaterialCode%> Material details"></i> </a> <a href='#' onclick = "Deleterow(<%=index%>)" class="link" data-id="<%=index%>" data-userid="<%=index%>" id="Del" ><span class="glyphicon glyphicon-trash"></span></a>
|
||||
|
||||
|
||||
</td>
|
||||
@ -494,7 +477,7 @@ function removeHiddenRows(rowcount)
|
||||
{
|
||||
var step;
|
||||
//alert(rowcount);
|
||||
for (step = 1; step < rowcount; step++) {
|
||||
for (step = 1; step < rowcount-2; step++) {
|
||||
var td = document.getElementById(step);
|
||||
td.parentNode.removeChild(td);
|
||||
$("#MaterialCode"+step).remove();
|
||||
@ -511,7 +494,15 @@ function Save()
|
||||
var id = '<?php echo REQ_DRAFT;?>'
|
||||
if(validate())
|
||||
{
|
||||
$('#content').loader('show');
|
||||
if(document.getElementById('Items').rows.length < 3)
|
||||
{
|
||||
alert('Please Select Line item to Create Requisition');
|
||||
$('#Deliverydt').focus();
|
||||
return false;
|
||||
}
|
||||
else
|
||||
{
|
||||
$('#content').loader('show');
|
||||
$.ajax({
|
||||
data:$('.requistion').serialize(),
|
||||
type:"POST",
|
||||
@ -535,6 +526,7 @@ function Save()
|
||||
}
|
||||
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
@ -561,7 +553,7 @@ function validate()
|
||||
}
|
||||
|
||||
}
|
||||
function DeleteRow(rowid)
|
||||
function Deleterow(rowid)
|
||||
{
|
||||
var DelRows = $('#txtDeletedRow').val();
|
||||
|
||||
@ -583,18 +575,43 @@ function DeleteRow(rowid)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
function validateBeforeAdd()
|
||||
{
|
||||
if($("option:selected", $("#RequestType")).val() == '-1')
|
||||
{
|
||||
alert('Please select the Request Type ');
|
||||
$("#RequestType").focus();
|
||||
return false;
|
||||
}
|
||||
else if($("#CostCenter").val() == '-1')
|
||||
{
|
||||
alert('Please select the Cost center to check the Budget Availablity ');
|
||||
$("#CostCenter").focus();
|
||||
return false;
|
||||
}
|
||||
else if( isExceed == '1')
|
||||
{
|
||||
alert('You dont have available Budget Amount. You cant raise new Requisition');
|
||||
return false;
|
||||
}
|
||||
else
|
||||
{
|
||||
$('#myModal1').modal('show');
|
||||
}
|
||||
}
|
||||
|
||||
$('.addClick').click(function(){
|
||||
|
||||
if ($("#MaterialCode option:selected").val() =='-1' )
|
||||
{
|
||||
alert('Please Select the MaterialCode ');
|
||||
return false;
|
||||
}
|
||||
|
||||
if(document.getElementById('Quantity').value == '' )
|
||||
{
|
||||
alert('Please Enter the Quantity');
|
||||
return false;
|
||||
|
||||
}
|
||||
|
||||
@ -698,7 +715,15 @@ $('.EditClick').click(function(){
|
||||
e.preventDefault();
|
||||
if(validate())
|
||||
{
|
||||
$('#content').loader('show');
|
||||
if(document.getElementById('Items').rows.length < 3)
|
||||
{
|
||||
alert('Please Select Line item to Create Requisition');
|
||||
$('#Deliverydt').focus();
|
||||
return false;
|
||||
}
|
||||
else
|
||||
{
|
||||
$('#content').loader('show');
|
||||
$.ajax({
|
||||
data:$('.requistion').serialize(),
|
||||
type:"POST",
|
||||
@ -721,8 +746,22 @@ $('.EditClick').click(function(){
|
||||
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
<!-- script for table , It works under the datatable plugin-->
|
||||
$(function () {
|
||||
$('#Items').DataTable({
|
||||
"paging": false,
|
||||
"lengthChange": true,
|
||||
"searching": false,
|
||||
"ordering": false,
|
||||
// "info": true,
|
||||
"autoWidth": true
|
||||
|
||||
});
|
||||
});
|
||||
</script>
|
||||
@ -1,8 +1,4 @@
|
||||
|
||||
Currently editing:
|
||||
/home/kasiram9/public_html/sidd_uat/application/views/requisitionlistapproval.php
|
||||
Encoding: Reopen Switch to Code Editor Close Save
|
||||
|
||||
<?php
|
||||
//print_r($AppList);
|
||||
?>
|
||||
@ -104,7 +100,7 @@ Currently editing:
|
||||
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
<label>Request Type</label>
|
||||
<label>Requistion Type</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'ReqType','value' => set_value('ReqType'),'id'=>'ReqType', 'class' => 'form-control' ,'readonly' => 'true');
|
||||
@ -123,7 +119,7 @@ Currently editing:
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<label>Desigination</label>
|
||||
<label>Designation</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'Desigination','value' => set_value('Desigination'),'id'=>'Desigination', 'class' => 'form-control' ,'readonly' => 'true');
|
||||
@ -135,7 +131,7 @@ Currently editing:
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<div class="col-md-4">
|
||||
<label>Requisition Date</label>
|
||||
<label>Requested Date</label>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'ReqDate','value' => set_value('ReqDate'),'id'=>'ReqDate', 'class' => 'form-control' ,'readonly' => 'true');
|
||||
@ -148,7 +144,7 @@ Currently editing:
|
||||
<label>Cost Center Name</label>
|
||||
<div class="form-group">
|
||||
|
||||
<?php
|
||||
<?php
|
||||
$options = array("0"=>'Select Cost Center');
|
||||
//print_r( $options);
|
||||
|
||||
@ -160,7 +156,7 @@ Currently editing:
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<label>Available Budget Amount</label>
|
||||
<label>Avl Budget Amt</label> <img id="AlertImg" src="<?php echo base_url(); ?>assets/dist/img/red.png" alt="your image" width="25px" style="display:none"/>
|
||||
<div class="form-group">
|
||||
<?php
|
||||
$data = array('name' => 'AvlBudgetAmount','value' => set_value('AvlBudgetAmount'),'id'=>'AvlBudgetAmount', 'class' => 'form-control' ,'readonly' => 'true');
|
||||
@ -169,47 +165,46 @@ Currently editing:
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-md-12">
|
||||
<table class="table table-bordered editableTable" style="border:1px solid #333">
|
||||
<div align="right" style="padding-right:10px">
|
||||
|
||||
<div class="modal fade" role="dialog">
|
||||
|
||||
<thead style="background-color:#fff">
|
||||
<tr>
|
||||
|
||||
<th>SNo</th>
|
||||
<th>Item Code</th>
|
||||
<th>Item Description</th>
|
||||
<th>UOM</th>
|
||||
<th>Quantity</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="tbleAppend">
|
||||
|
||||
|
||||
</tbody>
|
||||
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="modal-footer"> <div class="col-md-12">
|
||||
|
||||
<table id="Requistion" class="table table-bordered table-hover" style="background-color:#fff;font-size:12px;">
|
||||
<div align="right" style="padding-right:10px">
|
||||
|
||||
<div class="modal fade" role="dialog">
|
||||
|
||||
<thead style="background-color:#ddf">
|
||||
<tr>
|
||||
|
||||
<th>SNo</th>
|
||||
<th>Item Code</th>
|
||||
<th>Item Description</th>
|
||||
<th>UOM</th>
|
||||
<th>Quantity</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="tbleAppend">
|
||||
|
||||
</tbody>
|
||||
</div>
|
||||
</div>
|
||||
</table>
|
||||
<div class="modal-footer"> <div class="col-md-12">
|
||||
<a class="btn btn-info" data-dismiss="modal" value="Cancel">Ok</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
</form>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<table id="mytable" class="table table-bordred table-striped editableTable" style="border:1px solid #333" >
|
||||
<table id="Requisition" class="table table-bordred table-striped editableTable" style="border:1px solid #333" >
|
||||
<div align="right" style="padding-right:10px">
|
||||
<div id="content" > </div>
|
||||
<div class="modal fade" role="dialog">
|
||||
@ -218,8 +213,8 @@ Currently editing:
|
||||
<tr>
|
||||
|
||||
<th>Requisition Number</th>
|
||||
<th>Requisited By</th>
|
||||
<th>Requisited Date</th>
|
||||
<th>Requested By</th>
|
||||
<th>Requested Date</th>
|
||||
<th>Status</th>
|
||||
<th>Remarks</th>
|
||||
<th>Action</th>
|
||||
@ -240,7 +235,7 @@ Currently editing:
|
||||
<td><?php echo $record->Requestedby ?></td>
|
||||
<td><?php echo $record->CreatedDate ?></td>
|
||||
<td><?php echo $record->StatusName ?></td>
|
||||
<?php if (($record->Status) != REQ_APPROVED &&($record->Status) != REQ_REJECTED)
|
||||
<?php if (($record->Status) == REQ_PENDING_APPROVAL)
|
||||
{
|
||||
|
||||
?>
|
||||
@ -333,7 +328,15 @@ function Reset()
|
||||
}
|
||||
$("#myModal").on("shown.bs.modal", function(e) {
|
||||
var ReqId = $(e.relatedTarget).data('userid');
|
||||
//alert(ReqId);
|
||||
$("#CostCenter").empty();
|
||||
$("#tbleAppend").empty();
|
||||
$("#ReqType").val('');
|
||||
$("#ReqBy").val('');
|
||||
$("#ReqDate").val('');
|
||||
$("#Desigination").val('');
|
||||
$("#AvlBudgetAmount").val('');
|
||||
$('#AlertImg').attr("style","display:none;");
|
||||
|
||||
$('#content').loader('show');
|
||||
$.ajax({
|
||||
data:{id:ReqId},
|
||||
@ -342,15 +345,14 @@ $("#myModal").on("shown.bs.modal", function(e) {
|
||||
url:"<?php echo base_url() ?>requisitionform/ViewRequest",
|
||||
success:function(json) {
|
||||
$('#content').loader('hide');
|
||||
//alert(data);
|
||||
|
||||
$("#ReqType").val(json.Requist[0]['ReqType']);
|
||||
$("#ReqBy").val(json.Requist[0]['Requestedby']);
|
||||
$("#ReqDate").val(json.Requist[0]['CreatedDate']);
|
||||
$("#Desigination").val(json.Requist[0]['Designation']);
|
||||
$("#CostCenter").empty();
|
||||
$("#CostCenter").append(json.Cost);
|
||||
|
||||
$("#tbleAppend").empty();
|
||||
$("#CostCenter").append(json.Cost);
|
||||
|
||||
$("#tbleAppend").append(json.Items);
|
||||
|
||||
}
|
||||
@ -367,17 +369,32 @@ $('#CostCenter').change(function() {
|
||||
if(id != '-1')
|
||||
{
|
||||
$('#content').loader('show');
|
||||
|
||||
$.ajax({
|
||||
$.ajax({
|
||||
data:{id:id},
|
||||
dataType: 'json',
|
||||
type:"POST",
|
||||
url:"<?php echo base_url();?>requisitionform/getAvailableBudAmount?ReqType="+ReqType,
|
||||
success:function(json) {
|
||||
$('#content').loader('hide');
|
||||
$("#AvlBudgetAmount").val(json.Cost[0]['BudgetAmount']);
|
||||
|
||||
}
|
||||
url:"<?php echo base_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");
|
||||
}
|
||||
}
|
||||
|
||||
});
|
||||
|
||||
@ -486,4 +503,16 @@ function(start, end, label) {
|
||||
|
||||
|
||||
});
|
||||
$(function () {
|
||||
|
||||
$('#Requisition').DataTable({
|
||||
"paging": true,
|
||||
"lengthChange": true,
|
||||
"searching": true,
|
||||
"ordering": true,
|
||||
"info": true,
|
||||
"autoWidth": true
|
||||
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
@ -1,76 +1,189 @@
|
||||
|
||||
<?php
|
||||
|
||||
$PONO = '';
|
||||
$CompanyAddress = '';
|
||||
$CompanyName = '';
|
||||
$SuplierName = '';
|
||||
$SuplierAddress = '';
|
||||
$DeliveryAddress = '';
|
||||
$Podt = '';
|
||||
$DeliveryDate ='';
|
||||
|
||||
$ServiceDescription = '';
|
||||
if(!empty($CompanyDetails))
|
||||
{
|
||||
foreach ($CompanyDetails as $CO)
|
||||
{
|
||||
$CompanyName = $CO->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;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
<div><center>
|
||||
<h2>REVENUE PURCHASE ORDER</h2>
|
||||
<a style="color:#515151">#PO0001</a></center>
|
||||
<h2>PURCHASE ORDER</h2>
|
||||
</center>
|
||||
</div>
|
||||
|
||||
<div align="right"> PO NO:<?php echo $PONO?> </div>
|
||||
<div align="right"> <?php echo $Podt?> </div>
|
||||
<p>
|
||||
<b style="color:#3c8dbc">Siddharth Industries</b><br/> Survey No: 168/1C3,Pennalur Pet Road,<br/>Goonipalyam village,Uthukottai Taluk,<br/>Tiruvallur Dist, Chennai,Tamilnadu,Pin code : 602026.</p>
|
||||
<b style="color:#3c8dbc"><?php echo $CompanyName; ?></b><br/> <?php echo $CompanyAddress; ?></p>
|
||||
<table><tr><td>
|
||||
<p><a style="color:#3c8dbc">Vendor Address</a> <br/> DR Enterprices <br/>Uthukottai Taluk,Tiruvallur Dist, Chennai,Tamilnadu,Pin code : 602026.</p></td><td>
|
||||
<p><a style="color:#3c8dbc">Delivery To</a><br/> Siddharth Industries<br/> Survey No: 168/1C3,Pennalur Pet Road, Goonipalyam village, Uthukottai Taluk,Tiruvallur Dist, Chennai,Tamilnadu,Pin code : 602026.<p></td>
|
||||
<p><a style="color:#3c8dbc">Vendor Address : </a> <br/> <?php echo $SuplierName?> <br/><?php echo $SuplierAddress ?></p></td><td>
|
||||
<p><a style="color:#3c8dbc">Delivery To :</a><br/> <?php echo $DeliveryAddress?><p></td>
|
||||
</tr></table>
|
||||
<p>
|
||||
<div align="right">Purchase Order Date :2/5/2017 , Delivery Date :10/5/2017</div></p>
|
||||
<div align="right"> Delivery Date :<?php echo $DeliveryDate?></div></p>
|
||||
|
||||
|
||||
<table style="border-collapse: collapse;" cellpadding="0" cellspacing="0" border="1" width="105%">
|
||||
<tr style="background:#000;color:#fff;">
|
||||
<th>#</th>
|
||||
<th>Item and Description</th>
|
||||
<th>Item Description</th>
|
||||
<th>Qty</th>
|
||||
<th>Rate per unit</th>
|
||||
<th>Rate</th>
|
||||
<th>Amount</th>
|
||||
<th>Discount</th>
|
||||
<th>Excise Duty</th>
|
||||
<th>Vat</th>
|
||||
<th>GST</th>
|
||||
<th>CST</th>
|
||||
<th>GST</th>
|
||||
<th>Other Taxes</th>
|
||||
<th>Amount (Rs)</th>
|
||||
<th>Insurance</th>
|
||||
<th>Freight</th>
|
||||
<th>Total Amount</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
|
||||
<?php
|
||||
if(!empty($POItem))
|
||||
{
|
||||
$SubTotalAmount = 0;
|
||||
$index = 0;
|
||||
$TotalAmount = 0;
|
||||
$OrderValue = 0;
|
||||
$AfterExciseDuty = 0;
|
||||
$AfterVAT = 0;
|
||||
$AfterCST = 0;
|
||||
$AfterGST = 0;
|
||||
$AfterOtherTaxes = 0;
|
||||
$Insurance = 0;
|
||||
$AfterFreightValue = 0;
|
||||
$AfterDiscount = 0;
|
||||
foreach($POItem as $record)
|
||||
{
|
||||
$index = $index + 1;
|
||||
|
||||
?>
|
||||
<tr>
|
||||
<td>1</td>
|
||||
<td>Resin - (A grade)</td>
|
||||
<td align="right">100</td>
|
||||
<td align="right">120</td>
|
||||
<td align="right">500</td>
|
||||
<td align="right">1000</td>
|
||||
<td align="right">1300</td>
|
||||
<td align="right">700</td>
|
||||
<td align="right">200</td>
|
||||
<td align="right">1,23,800</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>2</td>
|
||||
<td>Dry Sand - (A grade)</td>
|
||||
<td align="right">1000</td>
|
||||
<td align="right">1200</td>
|
||||
<td align="right">5000</td>
|
||||
<td align="right">10000</td>
|
||||
<td align="right">13000</td>
|
||||
<td align="right">7000</td>
|
||||
<td align="right">2000</td>
|
||||
<td align="right">12,38,000</td>
|
||||
<td><?php echo $index ; ?></td>
|
||||
<td><?php echo $record->MaterialName ; ?></td>
|
||||
<td align="right"><?php echo $record->Quantity ; ?></td>
|
||||
<td align="right"><?php echo $record->Rate ; ?></td>
|
||||
<td align="right"><?php echo $record->BasicValue ; ?></td>
|
||||
<td align="right"><?php echo $record->AfterDiscount; ?></td>
|
||||
<td align="right"><?php echo $record->AfterExciseDuty ; ?></td>
|
||||
<td align="right"><?php echo $record->AfterVAT ; ?></td>
|
||||
<td align="right"><?php echo $record->AfterCST ; ?></td>
|
||||
<td align="right"><?php echo $record->AfterGST ; ?></td>
|
||||
<td align="right"><?php echo $record->AfterOtherTaxes ; ?></td>
|
||||
<td align="right"><?php echo $record->Insurance ; ?></td>
|
||||
<td align="right"><?php echo $record->AfterFreightValue ; ?></td>
|
||||
<td align="right"><?php $TotalAmount = (($record->BasicValue+$record->AfterExciseDuty
|
||||
+ $record->AfterVAT+$record->AfterCST+$record->AfterGST + $record->AfterOtherTaxes + $record->Insurance+ $record->AfterFreightValue)- $record->AfterDiscount);
|
||||
echo number_format($TotalAmount,2) ; ?></td>
|
||||
</tr>
|
||||
|
||||
<?php
|
||||
$SubTotalAmount = $SubTotalAmount + $record->BasicValue;
|
||||
$AfterExciseDuty =$AfterExciseDuty + $record->AfterExciseDuty;
|
||||
$AfterVAT =$AfterVAT + $record->AfterVAT;
|
||||
$AfterCST = $AfterCST + $record->AfterCST;
|
||||
$AfterGST =$AfterGST + $record->AfterGST;
|
||||
$AfterOtherTaxes =$AfterOtherTaxes + $record->AfterOtherTaxes;
|
||||
$Insurance =$Insurance + $record->Insurance;
|
||||
$AfterFreightValue =$AfterFreightValue + $record->AfterFreightValue;
|
||||
$AfterDiscount = $AfterDiscount + $record->AfterDiscount ;
|
||||
}
|
||||
$OrderValue = (( $SubTotalAmount + $AfterVAT + $AfterCST+$AfterGST+$AfterOtherTaxes +$Insurance +$AfterFreightValue+$AfterExciseDuty) - $AfterDiscount ) ;
|
||||
}
|
||||
|
||||
?>
|
||||
</table>
|
||||
<div align="right">
|
||||
|
||||
<p>Sub Total (Rs):13,61,800</p>
|
||||
<hr/>
|
||||
<table style="border-collapse: collapse;" cellpadding="0" cellspacing="0" border="1" width="105%"><tr><td align="center">
|
||||
<p>Discount (Rs):5500</p></td><td align="center">
|
||||
<p>Vat (Rs):11000</p></td><td align="center">
|
||||
<p>Packaging (Rs):14300</p></td></tr>
|
||||
<tr><td align="center">
|
||||
<p>Execise Duty (Rs) :7700</p></td><td align="center">
|
||||
<p>GST (RS) :1233</p></td><td align="center">
|
||||
<p>Insurance (Rs) : 2343</p></td></tr>
|
||||
<tr><td align="center">
|
||||
<p>Freight (Rs) :344</p></td><td align="center">
|
||||
<p>Revenue Tax (Rs): 458</p></td><td align="center">
|
||||
<p>Other Taxes (Rs) :2200</p></td ></tr>
|
||||
<table style="border-collapse: collapse;" cellpadding="0" cellspacing="0" border="0" width="105%">
|
||||
<tr>
|
||||
<td align="right">Sub Total Amount :</td>
|
||||
<td align="right"><?php echo number_format($SubTotalAmount,2);?></td>
|
||||
<br/>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Discount :</td>
|
||||
<td align="right"><?php echo number_format($AfterDiscount,2);?></td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Excise Duty :</td>
|
||||
<td align="right"><?php echo number_format($AfterExciseDuty,2);?></td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Vat :</td>
|
||||
<td align="right"><?php echo number_format($AfterVAT,2);?></td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">CST :</td>
|
||||
<td align="right"><?php echo number_format($AfterCST,2);?></td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">GST :</td>
|
||||
<td align="right"><?php echo number_format($AfterGST,2);?></td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Other Taxes:</td>
|
||||
<td align="right"><?php echo number_format($AfterOtherTaxes,2);?></td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Insurance :</td>
|
||||
<td align="right"><?php echo number_format($Insurance,2);?></td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Freight :</td>
|
||||
<td align="right"><?php echo number_format($AfterFreightValue,2);?></td>
|
||||
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right"><p><b>Total Order Amount :</b></p></td>
|
||||
<td align="right"><b><?php echo number_format($OrderValue,2);?></b></td>
|
||||
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<br>
|
||||
|
||||
<p>Total Amount (Rs):13,61,800 </p>
|
||||
<p>
|
||||
<div align="Left"> <b>Service Description:</b><br/><br/><?php echo $ServiceDescription;?></div></p>
|
||||
</div>
|
||||
File diff suppressed because it is too large
Load Diff
@ -1,73 +1,171 @@
|
||||
|
||||
|
||||
Currently editing:
|
||||
/home/kasiram9/public_html/sidd_SIT/application/views/servicepopdf.php
|
||||
Encoding: Reopen Switch to Code Editor Close Save
|
||||
|
||||
<?php
|
||||
|
||||
$PONO = '';
|
||||
$CompanyAddress = '';
|
||||
$CompanyName = '';
|
||||
$SuplierName = '';
|
||||
$SuplierAddress = '';
|
||||
$DeliveryAddress = '';
|
||||
$Podt = '';
|
||||
$DeliveryDate ='';
|
||||
$ServiceTax =0.00;
|
||||
$EducessTax =0.00;
|
||||
$SecHigherEducessTax =0.00;
|
||||
$KrishiKalyantax =0.00;
|
||||
$SwachhBharattax =0.00;
|
||||
$TotalAmount =0.00;
|
||||
$SubTotalAmount =0.00;
|
||||
$TaxAmount =0.00;
|
||||
$BasicAmount = 0.00;
|
||||
$ServiceDescription = '';
|
||||
if(!empty($CompanyDetails))
|
||||
{
|
||||
foreach ($CompanyDetails as $CO)
|
||||
{
|
||||
$CompanyName = $CO->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;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
?>
|
||||
<div><center>
|
||||
<h2>SERVICE PURCHASE ORDER</h2>
|
||||
<a style="color:#515151">#PO0001</a></center>
|
||||
<h2>PURCHASE ORDER</h2>
|
||||
</center>
|
||||
</div>
|
||||
|
||||
<div align="right"> PO NO:<?php echo $PONO?> </div>
|
||||
<div align="right"> <?php echo $Podt?> </div>
|
||||
<p>
|
||||
<b style="color:#3c8dbc">Siddharth Industries</b><br/> Survey No: 168/1C3,Pennalur Pet Road,<br/>Goonipalyam village,Uthukottai Taluk,<br/>Tiruvallur Dist, Chennai,Tamilnadu,Pin code : 602026.</p>
|
||||
<b style="color:#3c8dbc"><?php echo $CompanyName; ?></b><br/> <?php echo $CompanyAddress; ?></p>
|
||||
<table><tr><td>
|
||||
<p><a style="color:#3c8dbc">Vendor Address</a> <br/> DR Enterprices <br/>Uthukottai Taluk,Tiruvallur Dist, Chennai,Tamilnadu,Pin code : 602026.</p></td><td>
|
||||
<p><a style="color:#3c8dbc">Delivery To</a><br/> Siddharth Industries<br/> Survey No: 168/1C3,Pennalur Pet Road, Goonipalyam village, Uthukottai Taluk,Tiruvallur Dist, Chennai,Tamilnadu,Pin code : 602026.<p></td>
|
||||
<p><a style="color:#3c8dbc">Vendor Address : </a> <br/> <?php echo $SuplierName?> <br/><?php echo $SuplierAddress ?></p></td><td>
|
||||
<p><a style="color:#3c8dbc">Delivery To :</a><br/> <?php echo $DeliveryAddress?><p></td>
|
||||
</tr></table>
|
||||
<p>
|
||||
<div align="right">Purchase Order Date :2/5/2017 , Delivery Date :10/5/2017</div></p>
|
||||
<div align="right"> Delivery Date :<?php echo $DeliveryDate?></div></p>
|
||||
|
||||
|
||||
<table style="border-collapse: collapse;" cellpadding="0" cellspacing="0" border="1" width="105%">
|
||||
<tr style="background:#000;color:#fff;">
|
||||
<th>#</th>
|
||||
<th>Item and Description</th>
|
||||
<th>Item Description</th>
|
||||
<th>Qty</th>
|
||||
<th>Rate per unit</th>
|
||||
<th>Excide Duty</th>
|
||||
<th>Vat</th>
|
||||
<th>GST</th>
|
||||
<th>CST</th>
|
||||
<th>Other Taxes</th>
|
||||
<th>Amount (Rs)</th>
|
||||
<th>Rate</th>
|
||||
<th>Amount</th>
|
||||
<th>Service Tax</th>
|
||||
<th>Educess Tax</th>
|
||||
<th>Sec Higher Educess Tax</th>
|
||||
<th>Krishi Kalyan tax</th>
|
||||
<th>Swachh Bharat tax</th>
|
||||
<th>Total Amount</th>
|
||||
</tr>
|
||||
|
||||
<?php
|
||||
if(!empty($POItem))
|
||||
{
|
||||
$index = 0;
|
||||
$TotalAmount = 0;
|
||||
$OrderValue = 0;
|
||||
foreach($POItem as $record)
|
||||
{
|
||||
$index = $index + 1;
|
||||
$TotalAmount = $record->BasicValue + $record->Taxamount
|
||||
?>
|
||||
<tr>
|
||||
<td>1</td>
|
||||
<td>Resin - (A grade)</td>
|
||||
<td align="right">100</td>
|
||||
<td align="right">120</td>
|
||||
<td align="right">500</td>
|
||||
<td align="right">1000</td>
|
||||
<td align="right">1300</td>
|
||||
<td align="right">700</td>
|
||||
<td align="right">200</td>
|
||||
<td align="right">1,23,800</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>2</td>
|
||||
<td>Dry Sand - (A grade)</td>
|
||||
<td align="right">1000</td>
|
||||
<td align="right">1200</td>
|
||||
<td align="right">5000</td>
|
||||
<td align="right">10000</td>
|
||||
<td align="right">13000</td>
|
||||
<td align="right">7000</td>
|
||||
<td align="right">2000</td>
|
||||
<td align="right">12,38,000</td>
|
||||
<td><?php echo $index ; ?></td>
|
||||
<td><?php echo $record->MaterialName ; ?></td>
|
||||
<td align="right"><?php echo $record->Quantity ; ?></td>
|
||||
<td align="right"><?php echo $record->Rate ; ?></td>
|
||||
<td align="right"><?php echo $record->BasicValue ; ?></td>
|
||||
<td align="right"><?php echo $record->ServiceTax ; ?></td>
|
||||
<td align="right"><?php echo $record->EducessTax ; ?></td>
|
||||
<td align="right"><?php echo $record->SecHigherEducessTax ; ?></td>
|
||||
<td align="right"><?php echo $record->KrishiKalyantax ; ?></td>
|
||||
<td align="right"><?php echo $record->SwachhBharattax ; ?></td>
|
||||
<td align="right"><?php echo number_format($TotalAmount,2) ; ?></td>
|
||||
</tr>
|
||||
|
||||
<?php
|
||||
$SubTotalAmount = $SubTotalAmount + $record->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;
|
||||
}
|
||||
|
||||
?>
|
||||
</table>
|
||||
<div align="right">
|
||||
|
||||
<p>Sub Total (Rs):13,61,800</p>
|
||||
<hr/>
|
||||
<table style="border-collapse: collapse;" cellpadding="0" cellspacing="0" border="1" width="105%"><tr><td align="center">
|
||||
<p>Service Tax @14% (RS):190653</p></td><td align="center">
|
||||
<p>Edu. cess @2%(Rs) :27236</p></td><td align="center">
|
||||
<p>Sec & Higher cess @1% (Rs) :13618</p></td></tr>
|
||||
<tr><td align="center">
|
||||
<p>Krishi kalyan Tax @5% (Rs) :68090</p></td><td align ="center">
|
||||
<p>Swachh Barath Tax @5% (Rs) :68090</p></td><td align ="center">
|
||||
<p>Total Amount (Rs):13,61,800 </p></td></tr>
|
||||
|
||||
<table style="border-collapse: collapse;" cellpadding="0" cellspacing="0" border="0" width="105%">
|
||||
<tr>
|
||||
<td align="right">Sub Total Amount :</td>
|
||||
<td align="right"><?php echo number_format($SubTotalAmount,2);?></td>
|
||||
<br/>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td align="right">Service Tax @14% :</td>
|
||||
<td align="right"><?php echo number_format($ServiceTax,2);?></td>
|
||||
<br/>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Edu. cess @2% on ServiceTax:</td>
|
||||
<td align="right"><?php echo number_format($EducessTax,2);?></td>
|
||||
<br/>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Sec & Higher cess @1% on ServiceTax:</td>
|
||||
<td align="right"><?php echo number_format($SecHigherEducessTax,2);?></td>
|
||||
<br/>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Krishi kalyan Tax @0.5% on Basic Amount:</td>
|
||||
<td align="right"><?php echo number_format($KrishiKalyantax,2);?></td>
|
||||
<br/>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right">Swachh Barath Tax @0.5% on Basic Amount :</td>
|
||||
<td align="right"><?php echo number_format($SwachhBharattax,2);?></td>
|
||||
<br/>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right"><p><b>Total Order Amount :</b></td>
|
||||
<td align="right"><b><?php echo number_format($OrderValue,2);?></b></td>
|
||||
<br/>
|
||||
</tr>
|
||||
</table>
|
||||
<br>
|
||||
<br>
|
||||
<p>
|
||||
<div align="Left"> <b>Service Description:</b><br/><br/><?php echo $ServiceDescription;?></div></p>
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
BIN
assets/dist/img/red.png
vendored
Normal file
BIN
assets/dist/img/red.png
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 2.0 KiB |
@ -8,9 +8,9 @@
|
||||
*/
|
||||
$(document).ready(function(){
|
||||
|
||||
var CreatePOForm = $("#CreatePO");
|
||||
$( ".datePicker" ).datepicker({ dateFormat: 'yy/mm/dd' });
|
||||
|
||||
|
||||
|
||||
|
||||
//Initialize Select2 Elements
|
||||
$("#drpSupplier").select2();
|
||||
|
||||
@ -28,6 +28,7 @@ function myFunction() {
|
||||
}
|
||||
function validate()
|
||||
{
|
||||
|
||||
if($('#PODate').val() == '')
|
||||
{
|
||||
alert('Please Enter the Purchase Order date');
|
||||
@ -52,6 +53,7 @@ function validate()
|
||||
$('#Deliverydt').focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
else
|
||||
{
|
||||
return true;
|
||||
@ -96,6 +98,7 @@ function validateRevenueTax()
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
function calculateTotalValue()
|
||||
{
|
||||
var Packaging = $('#txtAfterPackaging').val() == '' ? '0.00' : $('#txtAfterPackaging').val();
|
||||
@ -109,7 +112,7 @@ function calculateTotalValue()
|
||||
var Discount = $('#txtAfterDiscount').val() == '' ? '0.00' : $('#txtAfterDiscount').val();
|
||||
var BasicVal = $('#txtBasicValue').val() == '' ? '0.00' : $('#txtBasicValue').val();
|
||||
|
||||
var totvalue = ( parseFloat(BasicVal) + parseFloat(Packaging)+ parseFloat(ExciseDuty)+ parseFloat(Vat) + parseFloat(CST)+ parseFloat(GST) + parseFloat( OtherTax) + parseFloat(Freight) + parseFloat(Insurance)) - parseFloat(Discount);
|
||||
var totvalue = ( parseFloat(BasicVal) + parseFloat(Packaging)+ parseFloat(ExciseDuty)+ parseFloat(Vat) + parseFloat(CST)+ parseFloat(GST) + parseFloat(OtherTax) + parseFloat(Freight) + parseFloat(Insurance)) - parseFloat(Discount);
|
||||
|
||||
var tot = parseFloat(totvalue).toFixed(2);
|
||||
|
||||
@ -129,12 +132,14 @@ function calculateTaxValue()
|
||||
var Discount = $('#txtAfterDiscount').val() == '' ? '0.00' : $('#txtAfterDiscount').val();
|
||||
|
||||
|
||||
var totvalue = ( parseFloat(Packaging)+ parseFloat(ExciseDuty)+ parseFloat(Vat) + parseFloat(CST)+ parseFloat(GST) + parseFloat(OtherTax) + parseFloat(Freight) + parseFloat(Insurance)) - parseFloat(Discount);
|
||||
var totvalue = ( parseFloat(Packaging)+ parseFloat(ExciseDuty)+ parseFloat(Vat) + parseFloat(CST)+ parseFloat(GST) + parseFloat(OtherTax) + parseFloat(Freight) + parseFloat(Insurance)) - parseFloat(Discount) ;
|
||||
|
||||
var tot = parseFloat(totvalue).toFixed(2);
|
||||
alert('tot:'+tot);
|
||||
//alert('tot:'+tot);
|
||||
return tot;
|
||||
}
|
||||
|
||||
|
||||
function validateExceedLimit()
|
||||
{
|
||||
var avalbudAmt = parseFloat($('#AvlBudAmt').val());
|
||||
@ -153,6 +158,8 @@ function calculateTaxValue()
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
function isNumberKey(evt)
|
||||
{
|
||||
var charCode = (evt.which) ? evt.which : evt.keyCode;
|
||||
@ -162,15 +169,16 @@ function isNumberKey(evt)
|
||||
|
||||
return true;
|
||||
}
|
||||
function change(){
|
||||
function change(){
|
||||
ExceedQuantityCheck();
|
||||
if($('#Quantity').val() != '' && $('#Rate').val() != '')
|
||||
{
|
||||
var txtQuantity = parseFloat( $('#Quantity').val());
|
||||
var txtUnitPrice = parseFloat($('#Rate').val());
|
||||
var Tot = txtQuantity * txtUnitPrice
|
||||
$('#txtBasicValue').val(Tot);
|
||||
calculateTotalValue();
|
||||
|
||||
}
|
||||
var txtQuantity = parseFloat( $('#Quantity').val());
|
||||
var txtUnitPrice = parseFloat($('#Rate').val());
|
||||
var Tot = txtQuantity * txtUnitPrice
|
||||
$('#txtBasicValue').val(Tot);
|
||||
calculateTotalValue();
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
* ©2008-2015 SpryMedia Ltd - datatables.net/license
|
||||
*/
|
||||
(function(Ea,Q,k){var P=function(h){function W(a){var b,c,e={};h.each(a,function(d){if((b=d.match(/^([^A-Z]+?)([A-Z])/))&&-1!=="a aa ai ao as b fn i m o s ".indexOf(b[1]+" "))c=d.replace(b[0],b[2].toLowerCase()),e[c]=d,"o"===b[1]&&W(a[d])});a._hungarianMap=e}function H(a,b,c){a._hungarianMap||W(a);var e;h.each(b,function(d){e=a._hungarianMap[d];if(e!==k&&(c||b[e]===k))"o"===e.charAt(0)?(b[e]||(b[e]={}),h.extend(!0,b[e],b[d]),H(a[e],b[e],c)):b[e]=b[d]})}function P(a){var b=m.defaults.oLanguage,c=a.sZeroRecords;
|
||||
!a.sEmptyTable&&(c&&"No data available in table"===b.sEmptyTable)&&E(a,a,"sZeroRecords","sEmptyTable");!a.sLoadingRecords&&(c&&"Loading..."===b.sLoadingRecords)&&E(a,a,"sZeroRecords","sLoadingRecords");a.sInfoThousands&&(a.sThousands=a.sInfoThousands);(a=a.sDecimal)&&db(a)}function eb(a){A(a,"ordering","bSort");A(a,"orderMulti","bSortMulti");A(a,"orderClasses","bSortClasses");A(a,"orderCellsTop","bSortCellsTop");A(a,"order","aaSorting");A(a,"orderFixed","aaSortingFixed");A(a,"paging","bPaginate");
|
||||
!a.sEmptyTable&&(c&&"No data available in tables"===b.sEmptyTable)&&E(a,a,"sZeroRecords","sEmptyTable");!a.sLoadingRecords&&(c&&"Loading..."===b.sLoadingRecords)&&E(a,a,"sZeroRecords","sLoadingRecords");a.sInfoThousands&&(a.sThousands=a.sInfoThousands);(a=a.sDecimal)&&db(a)}function eb(a){A(a,"ordering","bSort");A(a,"orderMulti","bSortMulti");A(a,"orderClasses","bSortClasses");A(a,"orderCellsTop","bSortCellsTop");A(a,"order","aaSorting");A(a,"orderFixed","aaSortingFixed");A(a,"paging","bPaginate");
|
||||
A(a,"pagingType","sPaginationType");A(a,"pageLength","iDisplayLength");A(a,"searching","bFilter");if(a=a.aoSearchCols)for(var b=0,c=a.length;b<c;b++)a[b]&&H(m.models.oSearch,a[b])}function fb(a){A(a,"orderable","bSortable");A(a,"orderData","aDataSort");A(a,"orderSequence","asSorting");A(a,"orderDataType","sortDataType");var b=a.aDataSort;b&&!h.isArray(b)&&(a.aDataSort=[b])}function gb(a){var a=a.oBrowser,b=h("<div/>").css({position:"absolute",top:0,left:0,height:1,width:1,overflow:"hidden"}).append(h("<div/>").css({position:"absolute",
|
||||
top:1,left:1,width:100,overflow:"scroll"}).append(h('<div class="test"/>').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,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user