emergency service po

This commit is contained in:
venbatechnologies@gmail.com 2017-11-21 16:36:12 +05:30
parent 7f5ba30d30
commit b1dd9b3a3a
8 changed files with 511 additions and 136 deletions

View File

@ -132,14 +132,64 @@ class emergencypurchaseorder extends BaseController
}
function addfile1()
{
$file = '';
//Check whether user upload picture
if(!empty($_FILES['images1']['name']))
{
//echo 'true';
$config['upload_path'] = 'uploads/BillFiles/';
$config['allowed_types'] = 'docx|pdf|doc|png|jpg';
$config['file_name'] = $_FILES['images1']['name'];
// print_r($config);die;
//Load upload library and initialize configuration
$this->load->library('upload',$config);
$this->upload->initialize($config);
if($this->upload->do_upload('images1'))
{
$uploadData = $this->upload->data();
//print_r($uploadData);
$file = $uploadData['file_name'];
}
else
{
$error = array('error' => $this->upload->display_errors());
//print_r($error);
$file = '';
}
}
else
{
//echo 'false';
$file = '';
}
return $file ;
}
//This used to Create Service Purchase Order
function addNewServicePurchaseOrder()
{
echo "t54";
//echo "t54";
//die();
$txtRowCount=$this->input->post('txtRowCount');
$POdt =$this->input->post('PODate');
$PODate = $this->getDateformat($POdt);
$SupplierID = $this->input->post('drpSupplier');
@ -149,31 +199,53 @@ class emergencypurchaseorder extends BaseController
$DeliveryOption = $this->input->post('DateRange');
$DeliverySchedule='';
$Deliverydt = $this->getDateformat($POdt);
$txtsplservice=$this->input->post('txtSpecialservice');
if($txtsplservice=='1')
{
$POStatus=SPECIAL_PO;
}
else
{
$POStatus=REQITEM_Emergency_PO_CREATED;
}
//echo $POStatus;
//die();
$POType = $this->input->post('POType');
$SpcialInstruction = $this->input->post('ScopeOfWork');
$RequistionComments = "Created Emergency Service PO";
$TotalOrderValueSummary = $this->input->post('TextTotalOrderValueSummaryService');
// $TotalOrderValueSummary = $this->input->post('TextTotalOrderValueSummaryService');
$POStatus = $this->input->post('TextStatus');
$TotalOrderValueSummary = $this->input->post('txtTotalOrderValueSummaryService');
//$POStatus = $this->input->post('TextStatus');
$CreateBy = $this->session->userdata ('userId');
$RequestedBy = $this->input->post('drpDepartment');
$ReqStatus = REQITEM_Emergency_PO_CREATED;
$RowCount = $this->input->post('TextRowCount');
// $RowCount = $this->input->post('TextRowCount');
$DeletedRow = $this->input->post('TextDeletedRowCount');
$RowCount = $this->input->post('txtRowCount');
//$DeletedRow = $this->input->post('TextDeletedRowCount');
$DeletedRow = $this->input->post('txtDeletedRow1');
$comma_separated = explode(':', $DeletedRow);
$dt = new DateTime('now', new DateTimeZone('Asia/Kolkata'));
$createddt = $dt->format('Y-m-d H:i:s');
$PaymentTerms=$this->input->post('PaymentMethod');
//$PaymentTerms=$this->input->post('PaymentMethod');
$PaymentTerms=$this->input->post('PaymentMethod');
$OtherPayment=$this->input->post('Otherpayment');
@ -184,7 +256,9 @@ class emergencypurchaseorder extends BaseController
else
{
$ServiceWorkStatus=$this->input->post('workStatus');
// $ServiceWorkStatus=$this->input->post('workStatus');
$ServiceWorkStatus=$this->input->post('workstatusValue');
}
$ServiceScheduleType = $this->input->post('ScheduleType');
$ServiceScheduleOptions = $this->input->post('ScheduleType');
@ -305,7 +379,7 @@ class emergencypurchaseorder extends BaseController
if($POStatus==SPECIAL_PO){
$file =$this->addfile();
$file =$this->addfile1();
$myfile = array('FilePath'=>$file,'MaterialCode'=>$MaterialCode,'PONO'=>$PONO);
$result= $this->purchaseorder_model->fileupload($myfile);
@ -317,12 +391,19 @@ if($POStatus==SPECIAL_PO){
if($POStatus == REQ_DRAFT)
{
echo 'Emergency Service Purchase Order Saved Successfully!The PO NO Is: '.$PONO;
// echo 'Emergency Service Purchase Order Saved Successfully!The PO NO Is: '.$PONO;
echo "<script>alert('You Have Successfully Saved the Purchase order! $PONO');</script>";
redirect('purchaseorder/PurchaseOrderList','refresh');
}
else
{
echo 'Emergency Service Purchase Order Created Successfully!The PO NO Is: '.$PONO;
// echo 'Emergency Service Purchase Order Created Successfully!The PO NO Is: '.$PONO;
echo "<script>alert('You Have Successfully created the Purchase order! $PONO');</script>";
redirect('purchaseorder/PurchaseOrderList','refresh');
}

View File

@ -203,3 +203,357 @@ ERROR - 2017-11-21 09:02:01 --> Severity: Notice --> Undefined variable: Materi
ERROR - 2017-11-21 09:02:01 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 09:02:01 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 09:03:09 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-11-21 09:14:45 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 09:14:45 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 09:14:45 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 09:14:45 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 09:14:45 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 09:17:42 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 09:17:42 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 09:17:42 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 09:17:42 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 09:17:42 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 09:19:22 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 09:19:22 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 09:19:22 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 09:19:22 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 09:19:22 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 09:19:53 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 09:19:53 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 09:19:53 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 09:19:53 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 09:19:53 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 09:21:08 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 09:21:08 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 09:21:08 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 09:21:08 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 09:21:08 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 09:24:42 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 09:24:42 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 09:24:42 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 09:24:42 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 09:24:42 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 09:26:49 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 09:26:49 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 09:26:49 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 09:26:49 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 09:26:49 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 09:27:43 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 09:27:43 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 09:27:43 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 09:27:43 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 09:27:43 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 09:28:51 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-11-21 09:37:59 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 09:37:59 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 09:37:59 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 09:37:59 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 09:37:59 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 09:40:19 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-11-21 10:15:24 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 10:15:24 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 10:15:24 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 10:15:24 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 10:15:24 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 10:17:16 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 10:17:16 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 10:17:16 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 10:17:16 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 10:17:16 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 10:19:02 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 10:19:02 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 10:19:02 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 10:19:02 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 10:19:02 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 10:22:20 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 10:22:20 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 10:22:20 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 10:22:20 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 10:22:20 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 10:28:25 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 10:28:25 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 10:28:25 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 10:28:25 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 10:28:25 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 10:39:42 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 10:39:42 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 10:39:42 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 10:39:42 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 10:39:42 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 10:45:29 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-11-21 10:45:56 --> Severity: Notice --> Undefined property: stdClass::$FirstName /opt/lampp/htdocs/siddharth_application/application/views/editRevenuepurchaseorder.php 128
ERROR - 2017-11-21 10:45:56 --> Severity: Notice --> Undefined property: stdClass::$MaterialCode /opt/lampp/htdocs/siddharth_application/application/views/editRevenuepurchaseorder.php 4097
ERROR - 2017-11-21 10:45:56 --> Severity: Notice --> Undefined property: stdClass::$MaterialName /opt/lampp/htdocs/siddharth_application/application/views/editRevenuepurchaseorder.php 4097
ERROR - 2017-11-21 11:00:57 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:00:57 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:00:57 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:00:57 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:00:57 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 11:02:17 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:02:17 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:02:17 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:02:17 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:02:17 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 11:05:14 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:05:14 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:05:14 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:05:14 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:05:14 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 11:08:01 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:08:01 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:08:01 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:08:01 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:08:01 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 11:10:16 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-11-21 11:12:51 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:12:51 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:12:51 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:12:51 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:12:51 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 11:14:04 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:14:04 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:14:04 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:14:04 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:14:04 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 11:17:22 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:17:22 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:17:22 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:17:22 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:17:22 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 11:20:13 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:20:13 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:20:13 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:20:13 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:20:13 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 11:28:57 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-11-21 11:30:20 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:30:20 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:30:20 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:30:20 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:30:20 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 11:31:13 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-11-21 11:31:36 --> Severity: Notice --> Undefined property: stdClass::$FirstName /opt/lampp/htdocs/siddharth_application/application/views/EditservicePurchaseorder.php 105
ERROR - 2017-11-21 11:32:35 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:32:35 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:32:35 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:32:35 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:32:35 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 11:36:00 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-11-21 11:36:26 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:36:26 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:36:26 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:36:26 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:36:26 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 11:37:23 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined property: stdClass::$POType /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Undefined variable: d /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:38:07 --> Severity: Notice --> Trying to get property of non-object /opt/lampp/htdocs/siddharth_application/application/views/serviceporeport.php 85
ERROR - 2017-11-21 11:43:26 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:43:26 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:43:26 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:43:26 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:43:26 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 11:53:17 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:53:17 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:53:17 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:53:17 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:53:17 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 11:54:23 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:54:23 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:54:23 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:54:23 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:54:23 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 11:54:29 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:54:29 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:54:29 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:54:29 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:54:29 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 11:55:54 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38
ERROR - 2017-11-21 11:58:32 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 11:58:32 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 11:58:32 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 11:58:32 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 11:58:32 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 12:03:30 --> Severity: Notice --> Undefined variable: RequistionDetails /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 233
ERROR - 2017-11-21 12:03:30 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 234
ERROR - 2017-11-21 12:03:30 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 235
ERROR - 2017-11-21 12:03:30 --> Severity: Notice --> Undefined variable: MaterialList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 281
ERROR - 2017-11-21 12:03:30 --> Severity: Notice --> Undefined variable: CostList /opt/lampp/htdocs/siddharth_application/application/views/alterpurchaseorder.php 309
ERROR - 2017-11-21 12:04:38 --> Severity: Warning --> mysqli_num_rows() expects parameter 1 to be mysqli_result, boolean given /opt/lampp/htdocs/siddharth_application/system/database/drivers/mysqli/mysqli_result.php 38

View File

@ -1735,7 +1735,7 @@ function SpecialPOcheck()
// alert('splpo')
$('#content').loader('show');
//$('#content').loader('show');
POcheck=$("input:radio[name='Quality']:checked").val();
console.log(POcheck);
@ -2968,7 +2968,7 @@ function populateValueMainFormForDeleteItem(rowid)
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title">Material Has been Received</h4>
<h4 class="modal-title">Material has been Received</h4>
</div>
<div class="modal-body">
<form>
@ -3018,14 +3018,15 @@ function populateValueMainFormForDeleteItem(rowid)
$data = array('name' => 'Date1','value' => set_value('Date1',$CurrentDate),'id'=>'Date1', 'class' => 'form-control num' ,'required' => 'true');
echo form_input($data);?>
</div>
<div class="col-md-4 pad"><strong>Advise Quantity</strong>
<input type="text" name="AQuantity" id="AQuantity" maxlength="12" class="form-control" value="" required>
</div>
</div>
<div class="col-md-12">
<div class="col-md-4 pad"><strong>Advise Quantity</strong>
<input type="text" name="AQuantity" id="AQuantity" maxlength="12" class="form-control" value="" required>
</div>
<input type="hidden" id="tablevalues" value="sample" name="tablevalues"/>
<input type="hidden" id="splrow" value="sample" name="splrow"/>
@ -3036,6 +3037,14 @@ function populateValueMainFormForDeleteItem(rowid)
<div class="col-md-4 pad"><strong>Courier No</strong>
<input type="text" name="CourierNo" id="CourierNo" maxlength="12" class="form-control" value="" required>
</div>
<div class="col-md-4" id="QualityChecked"><strong>Is Quality Check Required</strong>
<div class="radio">
<label><input type="radio" name="Quality" checked="checked" value='0' id="Quality">Yes</label>
</div>
<div class="radio">
<label><input type="radio" name="Quality" id="Quality" value='1' >No</label>
</div>
</div>
</div>
@ -3045,14 +3054,7 @@ function populateValueMainFormForDeleteItem(rowid)
<input type = "file" size = "20" input accept=".docx,.pdx,.doc.JPG,.PNG" id="images" name="images"/>
<label for="images">Select Company file<br/><small>(only .pdf,.excel,.doc,.png,.jpg)</small></label>
</div>
<div class="col-md-5" id="QualityChecked"><strong>Is Quality Check Required</strong>
<div class="radio">
<label><input type="radio" name="Quality" checked="checked" value='0' id="Quality">Yes</label>
</div>
<div class="radio">
<label><input type="radio" name="Quality" id="Quality" value='1' >No</label>
</div>
</div>
</div>
<!--<div class="col-md-12 text-right" style="padding-bottom:1%;">
@ -3105,6 +3107,7 @@ function populateValueMainFormForDeleteItem(rowid)
<!-- </form> -->
</div>
<div id="servicemodel" class="modal fade" data-backdrop-limit="1" role="dialog" aria-labelledby="myModalLabel" >
<div class="modal-dialog">
@ -3116,108 +3119,35 @@ function populateValueMainFormForDeleteItem(rowid)
</div>
<div class="modal-body" style="padding:0px;">
<div class="col-md-12">
<div class="col-md-4 pad"><strong>Select Item Code</strong>
<select id="serviceitemcode" name="serviceitemcode" class = "form-control select2">
<!-- <option value="1"> select material code</option> -->
</select>
<input type="text" name="servicerow" id="servicerow" value="">
</div>
<div class="col-md-4 pad"><strong>Description</strong>
<input type="text" name="description" id="description" maxlength="12" class="form-control" value="" required onkeypress="return isNumberKey(event)">
</div>
<div class="col-md-4">
<div class="col-md-4">
<input type = "file" size = "20" input accept=".docx,.pdx,.doc.JPG,.PNG" id="images1" name="images1"/>
<label for="images">Select Company file<br/><small>(only .pdf,.excel,.doc,.png,.jpg)</small></label>
</div>
<!--<div class="col-md-4 pad"><strong>Delivery Challan /Inv Date</strong>
<!-- <input type="Date" name="Date1" onkeypress="return onlyAlphabets(event);" maxlength="100" id="Date1" class="form-control" required value="2">
<?php
$data = array('name' => 'Date1','value' => set_value('Date1',$CurrentDate),'id'=>'Date1', 'class' => 'form-control num' ,'required' => 'true');
echo form_input($data);?>
</div>-->
</div>
<!-- <div class="col-md-12">
<div class="col-md-4 pad"><strong>Advise Quantity</strong>
<input type="text" name="AQuantity" id="AQuantity" maxlength="12" class="form-control" value="" required>
</div>
<input type="hidden" id="tablevalues" value="sample" name="tablevalues"/>
<input type="hidden" id="splrow" value="sample" name="splrow"/>
<div class="col-md-4 pad"><strong>Vehicle No</strong>
<input type="text" name="VehicleNo" id="VehicleNo" maxlength="12" class="form-control" value="" required>
</div>
<div class="col-md-4 pad"><strong>Courier No</strong>
<input type="text" name="CourierNo" id="CourierNo" maxlength="12" class="form-control" value="" required>
</div>
</div>-->
<!--<div class="col-md-12">
<div class="col-md-5">
<input type = "file" size = "20" input accept=".docx,.pdx,.doc.JPG,.PNG" id="images" name="images"/>
<label for="images">Select Company file<br/><small>(only .pdf,.excel,.doc,.png,.jpg)</small></label>
</div>
<div class="col-md-5" id="QualityChecked"><strong>Is Quality Check Required</strong>
<div class="radio">
<label><input type="radio" name="Quality" checked="checked" value='0' id="Quality">Yes</label>
</div>
<div class="radio">
<label><input type="radio" name="Quality" id="Quality" value='1' >No</label>
</div>
</div>
</div>-->
<div class="col-md-12 text-right" style="padding-bottom:1%;">
<div class="col-md-4" style="margin-left: 64%;">
<a class="btn btn-primary Add" onclick="servicetable();"><span class="bold">Add LineItem</span></a>
</div>
</div>
</div>
<!-- <div class="col-md-12 text-right">
// <a class="btn btn-primary font Add" id="addtable"><span class="bold">Add table</span></a>
// </div>-->
<div class="col-md-12">
<table id="specialservicetable" class="table table-hover table-bordered" style="background-color:#fff;font-size:12px;" >
<thead style="background-color:#ddf">
<tr>
<th>MaterialCode</th>
<th>Description</th>
<th>File1</th>
</tr>
</thead>
<tbody id="specialserviceappend">
</tbody>
</table>
</div>
<div class="modal-footer">
<div class="col-md-12 text-right">
<!-- <div class="col-md-4">
<a class="btn btn-primary Add" onclick="addtable();"><span class="bold">Add table</span></a>
</div> -->
<div class="col-md-12 text-right">
<div class="col-md-4 col-md-offset-8">
<a class="btn btn-primary ok" ID="ExciseOption12" onclick="SpecialPOcheck();" >&nbsp;&nbsp;<span class="bold">Submit</span></a>
<a class="btn btn-primary ok" ID="ExciseOption12" onclick="SpecialPOcheck();" >&nbsp;&nbsp;<span class="bold">Submit</span></a>
<a class="btn btn-primary" data-dismiss="modal" onclick="SetExciseCalculationCancel();" value="Cancel">Cancel</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- </form> -->
</div>
@ -7416,7 +7346,7 @@ $('#content').loader('hide');
function Save(status)
{
alert('Save fn');
// alert('Save fn');
if(status == '0')
{
@ -7479,32 +7409,42 @@ $('#content').loader('hide');
}
else
{
$('#content').loader('show');
$.ajax({
data:$('.CreatealterPO').serialize()+"&TextRowCount="+TextRowCount+"&TextDeletedRowCount="+TextDeletedRowCount+"&TextTotalOrderValueSummaryService="+TextTotalOrderValueSummaryService+"&TextStatus="+TextStatus+"&PaymentMethod="+PaymentMethod+"&workStatus="+workStatus,
type:"POST",
url:"<?php echo base_url() ?>emergencypurchaseorder/addNewServicePurchaseOrder",
success:function(data) {
if(data)
{
$('#content').loader('hide');
alert(data);
$('#txtRowCount').val('');
$('#txtDeletedRow').val('');
$('#SpcialInstruction').val('');
$('#txtDeliveryAddress').val('');
window.location = "purchaseorderListing";
}
else
{
$('#content').loader('hide');
alert("Error");
}
//alert('Save fn');
// $('#content').loader('show');
// $.ajax({
// data:$('.CreatealterPO').serialize()+"&TextRowCount="+TextRowCount+"&TextDeletedRowCount="+TextDeletedRowCount+"&TextTotalOrderValueSummaryService="+TextTotalOrderValueSummaryService+"&TextStatus="+TextStatus+"&PaymentMethod="+PaymentMethod+"&workStatus="+workStatus,
// type:"POST",
// url:"<?php echo base_url() ?>emergencypurchaseorder/addNewServicePurchaseOrder",
// success:function(data) {
// if(data)
// {
// $('#content').loader('hide');
// alert(data);
// $('#txtRowCount').val('');
// $('#txtDeletedRow').val('');
// $('#SpcialInstruction').val('');
// $('#txtDeliveryAddress').val('');
// window.location = "purchaseorderListing";
// }
// else
// {
// $('#content').loader('hide');
// alert("Error");
// }
// }
// });
$('#content').loader('show');
$("#CreatealterPO").attr("method", "post");
$("#CreatealterPO").attr("enctype", "multipart/form-data");
$("#CreatealterPO").attr("action", "emergencypurchaseorder/addNewServicePurchaseOrder");
$('#CreatealterPO').submit();
}
});
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 200 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 206 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 187 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 KiB