export excel options

This commit is contained in:
sriramv 2017-06-05 13:06:30 +05:30
parent 5c6a629c75
commit d36715285d
22 changed files with 3706 additions and 5 deletions

View File

@ -347,6 +347,125 @@ class CostCenter extends BaseController
}
}
function export_cost(){
$this->load->library('excel');
$this->excel->setActiveSheetIndex(0)->mergeCells('G3:M3');
$this->excel->setActiveSheetIndex(0)->getStyle('G3')->getAlignment()->applyFromArray(
array('horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_CENTER,)
);
$this->excel->getActiveSheet()->setTitle('Cost Master');
$this->excel->getActiveSheet()->setCellValue('G3', 'SIDDHARTH INDUSTRIES Cost Master');
$this->excel->getActiveSheet()->setCellValue('B5', 'S.No');
$this->excel->getActiveSheet()->setCellValue('C5', 'CostCenterCode');
$this->excel->getActiveSheet()->setCellValue('D5', 'CostCenterName');
$this->excel->getActiveSheet()->setCellValue('E5', 'CAPITAL');
$this->excel->getActiveSheet()->setCellValue('F5', 'REVENUE');
$this->excel->getActiveSheet()->setCellValue('G5', 'IMPORT');
$this->excel->getActiveSheet()->setCellValue('H5', 'SERVICE');
$this->excel->getActiveSheet()->setCellValue('I5', 'BudgetYear');
$this->excel->getActiveSheet()->setCellValue('J5', 'DEPName');
$this->excel->getActiveSheet()->setCellValue('K5', 'IsActive');
$this->excel->getActiveSheet()->setCellValue('L5', 'Remarks');
$this->excel->getActiveSheet()->setCellValue('M5', 'CreatedBy');
$this->excel->getActiveSheet()->setCellValue('N5', 'UpdatedBy');
$this->excel->getActiveSheet()->setCellValue('O5', 'IsApproved');
$this->excel->getActiveSheet()->setCellValue('P5', 'ApprovedBy');
$this->excel->getActiveSheet()->getStyle('G3')->getFont()->setSize(14);
$this->excel->getActiveSheet()->getStyle('G3')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('B5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('B5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('J5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('J5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('K5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('K5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('L5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('L5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('M5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('M5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('N5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('N5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('O5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('O5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('P5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('P5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('Q5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('Q5')->getFont()->setBold(true);
$exportData = $this->costcenter_model->export_excel();
if ($exportData) {
$i = 6;
$s = 1;
foreach ($exportData as $data) {
$this->excel->getActiveSheet()->setCellValue('B'. $i,$s);
//$this->excel->getActiveSheet()->setCellValue('C'. $i,$data['AssetCode']);
$this->excel->getActiveSheet()->setCellValue('C'. $i,$data['CostCenterCode']);
$this->excel->getActiveSheet()->setCellValue('D'. $i,$data['CostCenterName']);
$this->excel->getActiveSheet()->setCellValue('E'. $i,$data['capital']);
$this->excel->getActiveSheet()->setCellValue('F'. $i,$data['revenue']);
$this->excel->getActiveSheet()->setCellValue('G'. $i,$data['import']);
$this->excel->getActiveSheet()->setCellValue('H'. $i,$data['service']);
$this->excel->getActiveSheet()->setCellValue('I'. $i,$data['BudgetYear']);
$this->excel->getActiveSheet()->setCellValue('J'. $i,$data['DepartmentName']);
$this->excel->getActiveSheet()->setCellValue('K'. $i,$data['IsActive']);
$this->excel->getActiveSheet()->setCellValue('L'. $i,$data['Remarks']);
$this->excel->getActiveSheet()->setCellValue('M'. $i,$data['firstname']);
$this->excel->getActiveSheet()->setCellValue('N'. $i,$data['Updated_By']);
$this->excel->getActiveSheet()->setCellValue('O'. $i,$data['IsApproved']);
$this->excel->getActiveSheet()->setCellValue('P'. $i,$data['firstname']);
$i++;
$s++;
}
}
$filename = 'Cost_Master' .' '. '.xls'; //save our workbook as this file name
header('Content-Type: application/vnd.ms-excel'); //mime type
header('Content-Disposition: attachment;filename="' . $filename . '"'); //tell browser what's the file name
header('Cache-Control: max-age=0'); //no cache
$objWriter = PHPExcel_IOFactory::createWriter($this->excel, 'Excel5');
if (ob_get_contents()) ob_end_clean();
ob_start();
$objWriter->save('php://output');
}
function pageNotFound()
{

View File

@ -315,6 +315,127 @@ class assetdetails extends BaseController
return $retDate;
}
function export_asset(){
$this->load->library('excel');
$this->excel->setActiveSheetIndex(0)->mergeCells('G3:M3');
$this->excel->setActiveSheetIndex(0)->getStyle('G3')->getAlignment()->applyFromArray(
array('horizontal' => PHPExcel_Style_Alignment::HORIZONTAL_CENTER,)
);
$this->excel->getActiveSheet()->setTitle('Asset Details');
$this->excel->getActiveSheet()->setCellValue('G3', 'SIDDHARTH INDUSTRIES Asset Details');
$this->excel->getActiveSheet()->setCellValue('C5', 'AssetCode');
$this->excel->getActiveSheet()->setCellValue('D5', 'AssetName');
$this->excel->getActiveSheet()->setCellValue('E5', 'Description');
$this->excel->getActiveSheet()->setCellValue('F5', 'DEPCode');
$this->excel->getActiveSheet()->setCellValue('G5', 'Location');
$this->excel->getActiveSheet()->setCellValue('H5', 'UserName');
$this->excel->getActiveSheet()->setCellValue('I5', 'SupplierCode');
$this->excel->getActiveSheet()->setCellValue('J5', 'DateOfPurchase');
$this->excel->getActiveSheet()->setCellValue('K5', 'DateOfCommison');
$this->excel->getActiveSheet()->setCellValue('L5', 'AssetValue');
$this->excel->getActiveSheet()->setCellValue('M5', 'AssetStatus');
$this->excel->getActiveSheet()->setCellValue('N5', 'IsActive');
$this->excel->getActiveSheet()->setCellValue('O5', 'Remarks');
$this->excel->getActiveSheet()->setCellValue('P5', 'CreatedBy');
$this->excel->getActiveSheet()->setCellValue('Q5', 'UpdatedBy');
$this->excel->getActiveSheet()->getStyle('G3')->getFont()->setSize(14);
$this->excel->getActiveSheet()->getStyle('G3')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('J5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('J5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('K5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('K5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('L5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('L5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('M5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('M5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('N5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('N5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('O5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('O5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('P5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('P5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('Q5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('Q5')->getFont()->setBold(true);
$exportData = $this->assetdetails_model->export_excel();
if ($exportData) {
$i = 6;
$s = 1;
foreach ($exportData as $data) {
$this->excel->getActiveSheet()->setCellValue('C'. $i,$data['AssetCode']);
$this->excel->getActiveSheet()->setCellValue('D'. $i,$data[ 'AssetName']);
$this->excel->getActiveSheet()->setCellValue('E'. $i,$data[ 'Description']);
$this->excel->getActiveSheet()->setCellValue('F'. $i,$data[ 'DEPCode']);
$this->excel->getActiveSheet()->setCellValue('G'. $i,$data[ 'Location']);
$this->excel->getActiveSheet()->setCellValue('H'. $i,$data[ 'UserName']);
$this->excel->getActiveSheet()->setCellValue('I'. $i,$data[ 'SupplierCode']);
$this->excel->getActiveSheet()->setCellValue('J'. $i,$data[ 'DateOfPurchase']);
$this->excel->getActiveSheet()->setCellValue('K'. $i,$data[ 'DateOfCommison']);
$this->excel->getActiveSheet()->setCellValue('L'. $i,$data[ 'AssetValue']);
$this->excel->getActiveSheet()->setCellValue('M'. $i,$data[ 'AssetStatus']);
$this->excel->getActiveSheet()->setCellValue('N'. $i,$data[ 'IsActive']);
$this->excel->getActiveSheet()->setCellValue('O'. $i,$data[ 'Remarks']);
$this->excel->getActiveSheet()->setCellValue('P'. $i,$data[ 'firstname']);
$this->excel->getActiveSheet()->setCellValue('Q'. $i,$data[ 'Updated_By']);
$i++;
$s++;
}
}
$filename = 'Asset_details' .' '. '.xls'; //save our workbook as this file name
header('Content-Type: application/vnd.ms-excel'); //mime type
header('Content-Disposition: attachment;filename="' . $filename . '"'); //tell browser what's the file name
header('Cache-Control: max-age=0'); //no cache
$objWriter = PHPExcel_IOFactory::createWriter($this->excel, 'Excel5');
if (ob_get_contents()) ob_end_clean();
ob_start();
$objWriter->save('php://output');
}
function pageNotFound()
{

View File

@ -557,6 +557,208 @@ echo "<script>alert('Record Not Updated!');</script>";
}
}
}
/** this function can be use for excel report **/
function export_employee(){
$this->load->library('excel');
$this->excel->setActiveSheetIndex(0)->mergeCells('L3:S3');
$this->excel->getActiveSheet()->setTitle('Employee details');
$this->excel->getActiveSheet()->setCellValue('L3', 'SIDDHARTH INDUSTRIES Employee Details');
$this->excel->getActiveSheet()->setCellValue('A5', 'EmpID');
$this->excel->getActiveSheet()->setCellValue('B5', 'FirstName-LastName');
$this->excel->getActiveSheet()->setCellValue('c5', 'FatherName');
$this->excel->getActiveSheet()->setCellValue('d5', 'Gender');
$this->excel->getActiveSheet()->setCellValue('E5', 'ContactNumber');
$this->excel->getActiveSheet()->setCellValue('F5', 'EmailId');
$this->excel->getActiveSheet()->setCellValue('G5', 'BloodGroup');
$this->excel->getActiveSheet()->setCellValue('H5', 'MartialStatus');
$this->excel->getActiveSheet()->setCellValue('I5', 'DateofJoining');
$this->excel->getActiveSheet()->setCellValue('J5', 'PreviousYearsOfExp');
$this->excel->getActiveSheet()->setCellValue('K5', 'Designation');
$this->excel->getActiveSheet()->setCellValue('L5', 'Departmentcode');
$this->excel->getActiveSheet()->setCellValue('M5', 'PresentAddress');
$this->excel->getActiveSheet()->setCellValue('N5', 'PermanentAddress');
$this->excel->getActiveSheet()->setCellValue('O5', 'EmergencyContactName');
$this->excel->getActiveSheet()->setCellValue('P5', 'EmergencyContactNumber');
$this->excel->getActiveSheet()->setCellValue('Q5', 'Edu_Qualification');
$this->excel->getActiveSheet()->setCellValue('R5', 'Additional_Qualification');
$this->excel->getActiveSheet()->setCellValue('S5', 'AadharNo');
$this->excel->getActiveSheet()->setCellValue('T5', 'PANNo');
$this->excel->getActiveSheet()->setCellValue('U5', 'BankStatemant');
$this->excel->getActiveSheet()->setCellValue('V5', 'PassportNo');
$this->excel->getActiveSheet()->setCellValue('W5', 'Passport_Valid_till');
$this->excel->getActiveSheet()->setCellValue('X5', 'IsActive');
$this->excel->getActiveSheet()->setCellValue('Y5', 'Reference_Name');
$this->excel->getActiveSheet()->setCellValue('Z5', 'Reference_ContactNumber');
$this->excel->getActiveSheet()->setCellValue('AA5', 'PFNO');
$this->excel->getActiveSheet()->setCellValue('AB5', 'ESI');
$this->excel->getActiveSheet()->setCellValue('AC5', 'UANO');
$this->excel->getActiveSheet()->setCellValue('AD5', 'Remarks');
$this->excel->getActiveSheet()->setCellValue('AE5', 'Reference_Name');
$this->excel->getActiveSheet()->setCellValue('AF5', 'Reference_Name');
$this->excel->getActiveSheet()->setCellValue('AG5', 'CreatedBy');
$this->excel->getActiveSheet()->setCellValue('AH5', 'UpdatedBY');
$this->excel->getActiveSheet()->setCellValue('AI5', 'PF_Balance');
$this->excel->getActiveSheet()->setCellValue('AJ5', 'PF_Bal_On');
$this->excel->getActiveSheet()->getStyle('L3')->getFont()->setSize(14);
$this->excel->getActiveSheet()->getStyle('L3')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('A5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('A5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('B5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('B5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('J5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('J5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('K5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('K5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('L5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('L5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('M5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('M5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('N5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('N5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('O5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('O5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('P5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('P5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('P5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('Q5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('Q5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('R5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('R5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('S5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('S5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('T5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('T5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('U5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('U5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('V5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('V5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('W5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('W5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('X5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('Y5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('Y5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('Z5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('Z5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AA5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AA5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AB5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AB5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AC5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AC5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AD5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AD5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AE5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AE5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AF5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AF5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AG5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AG5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AH5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AH5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AI5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AI5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('AJ5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('AJ5')->getFont()->setBold(true);
$exportData = $this->employeedetails_model->export_excel();
if ($exportData) {
$i = 6;
$s = 1;
foreach ($exportData as $data) {
$this->excel->getActiveSheet()->setCellValue('A'. $i,$data['EmpID']);
$this->excel->getActiveSheet()->setCellValue('B'. $i,$data['FirstName'].'-'.$data['LastName']);
$this->excel->getActiveSheet()->setCellValue('C'. $i,$data['FatherName']);
$this->excel->getActiveSheet()->setCellValue('D'. $i,$data['Gender']);
$this->excel->getActiveSheet()->setCellValue('E'. $i,$data['ContactNumber']);
$this->excel->getActiveSheet()->setCellValue('F'. $i,$data['EmailId']);
$this->excel->getActiveSheet()->setCellValue('G'. $i,$data['BloodGroup']);
$this->excel->getActiveSheet()->setCellValue('H'. $i,$data['MartialStatus']);
$this->excel->getActiveSheet()->setCellValue('I'. $i,$data['DateofJoining']);
$this->excel->getActiveSheet()->setCellValue('J'. $i,$data['PreviousYearsOfExp']);
$this->excel->getActiveSheet()->setCellValue('K'. $i,$data['Designation']);
$this->excel->getActiveSheet()->setCellValue('L'. $i,$data['Departmentcode']);
$this->excel->getActiveSheet()->setCellValue('M'. $i,$data['PresentAddress']);
$this->excel->getActiveSheet()->setCellValue('N'. $i,$data['PermanentAddress']);
$this->excel->getActiveSheet()->setCellValue('O'. $i,$data['EmergencyContactName']);
$this->excel->getActiveSheet()->setCellValue('P'. $i,$data['EmergencyContactNumber']);
$this->excel->getActiveSheet()->setCellValue('Q'. $i,$data['Edu_Qualification']);
$this->excel->getActiveSheet()->setCellValue('R'. $i,$data['Additional_Qualification']);
$this->excel->getActiveSheet()->setCellValue('S'. $i,$data['AadharNo']);
$this->excel->getActiveSheet()->setCellValue('T'. $i,$data['PANNo']);
$this->excel->getActiveSheet()->setCellValue('U'. $i,$data['BankAccountNo'].'-'.$data['IFSCCode'].'-'.$data['BankBranchName'].$data['BankAddress']);
$this->excel->getActiveSheet()->setCellValue('V'. $i,$data['PassportNo']);
$this->excel->getActiveSheet()->setCellValue('W'. $i,$data['Passport_Valid_till']);
$this->excel->getActiveSheet()->setCellValue('X'. $i,$data['IsActive']);
$this->excel->getActiveSheet()->setCellValue('Y'. $i,$data['Reference_Name']);
$this->excel->getActiveSheet()->setCellValue('Z'. $i,$data['Reference_ContactNumber']);
$this->excel->getActiveSheet()->setCellValue('AA'. $i,$data['PFNO']);
$this->excel->getActiveSheet()->setCellValue('AB'. $i,$data['ESI']);
$this->excel->getActiveSheet()->setCellValue('AC'. $i,$data['UANO']);
$this->excel->getActiveSheet()->setCellValue('AD'. $i,$data['Remarks']);
$this->excel->getActiveSheet()->setCellValue('AE'. $i,$data['Reference_Name']);
$this->excel->getActiveSheet()->setCellValue('AF'. $i,$data['Reference_Name']);
$this->excel->getActiveSheet()->setCellValue('AG'. $i,$data['firstname']);
$this->excel->getActiveSheet()->setCellValue('AH'. $i,$data['UpdatedBY']);
$this->excel->getActiveSheet()->setCellValue('AI'. $i,$data['PF_Balance']);
$this->excel->getActiveSheet()->setCellValue('AJ'. $i,$data['PF_Bal_On']);
$i++;
$s++;
}
}
$filename = 'Employee_Details' .' '. '.xls'; //save our workbook as this file name
header('Content-Type: application/vnd.ms-excel'); //mime type
header('Content-Disposition: attachment;filename="' . $filename . '"'); //tell browser what's the file name
header('Cache-Control: max-age=0'); //no cache
$objWriter = PHPExcel_IOFactory::createWriter($this->excel, 'Excel5');
if (ob_get_contents()) ob_end_clean();
ob_start();
$objWriter->save('php://output');
}
}
?>

View File

@ -20,7 +20,9 @@ class rawmaterialdetails extends BaseController
$this->load->model('rawmaterialdetails_model');
$this->load->library('pagination');
$this->load->library('form_validation');
$this->isLoggedIn();
$this->load->library('Excel');
$this->isLoggedIn();
}
/**
* This function used to load the first screen of the user
@ -237,6 +239,84 @@ class rawmaterialdetails extends BaseController
}
}
}
/** this function can be use for excel report **/
function export_material(){
$this->load->library('excel');
$this->excel->setActiveSheetIndex(0)->mergeCells('D3:J3');
$this->excel->getActiveSheet()->setTitle('Material Master');
$this->excel->getActiveSheet()->setCellValue('D3', 'SIDDHARTH INDUSTRIES Raw Material');
$this->excel->getActiveSheet()->setCellValue('C5', 'MaterialCode');
$this->excel->getActiveSheet()->setCellValue('D5', 'MaterialName');
$this->excel->getActiveSheet()->setCellValue('E5', 'MaterialType');
$this->excel->getActiveSheet()->setCellValue('F5', 'UOM');
$this->excel->getActiveSheet()->setCellValue('G5', 'Created by');
$this->excel->getActiveSheet()->setCellValue('H5', 'Updated By');
$this->excel->getActiveSheet()->setCellValue('I5', 'IsActive');
$this->excel->getActiveSheet()->getStyle('D3')->getFont()->setSize(14);
$this->excel->getActiveSheet()->getStyle('D3')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('C5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('D5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('E5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('F5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('G5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('H5')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('I5')->getFont()->setBold(true);
$exportData = $this->rawmaterialdetails_model->export_excel();
if ($exportData) {
$i = 6;
$s = 1;
foreach ($exportData as $data) {
$this->excel->getActiveSheet()->setCellValue('C' . $i,$data['MaterialCode']);
$this->excel->getActiveSheet()->setCellValue('D' . $i,$data['MaterialName']);
$this->excel->getActiveSheet()->setCellValue('E' . $i,$data['MaterialType']);
$this->excel->getActiveSheet()->setCellValue('F' . $i,$data['UOM']);
$this->excel->getActiveSheet()->setCellValue('G' . $i,$data['firstname']);
$this->excel->getActiveSheet()->setCellValue('H' . $i,$data['Updated_By']);
$this->excel->getActiveSheet()->setCellValue('I' . $i,$data['IsActive']);
$i++;
$s++;
}
}
$filename = 'RawMaterial' .' '. '.xls'; //save our workbook as this file name
header('Content-Type: application/vnd.ms-excel'); //mime type
header('Content-Disposition: attachment;filename="' . $filename . '"'); //tell browser what's the file name
header('Cache-Control: max-age=0'); //no cache
$objWriter = PHPExcel_IOFactory::createWriter($this->excel, 'Excel5');
if (ob_get_contents()) ob_end_clean();
ob_start();
$objWriter->save('php://output');
}
function pageNotFound()
@ -247,4 +327,4 @@ class rawmaterialdetails extends BaseController
}
}
?>
?>+

View File

@ -19,7 +19,8 @@ class supplier extends BaseController
parent::__construct();
$this->load->model('supplier_model');
$this->load->library('form_validation');
$this->load->library('pagination');
$this->load->library('pagination');
$this->load->library('Excel');
$this->isLoggedIn();
}
/**
@ -304,6 +305,136 @@ class supplier extends BaseController
$this->loadViews("editSupplier", $this->global,$data, NULL);
}
/** this function can be use for excel report **/
function export_supplierdetails(){
$this->load->library('excel');
$this->excel->setActiveSheetIndex(0);
$this->excel->getActiveSheet()->setTitle('supplier details');
$this->excel->getActiveSheet()->setCellValue('A1', 'SupplierID');
$this->excel->getActiveSheet()->setCellValue('B1', 'SupplierName');
$this->excel->getActiveSheet()->setCellValue('C1', 'Address');
$this->excel->getActiveSheet()->setCellValue('D1', 'ContactNumber');
$this->excel->getActiveSheet()->setCellValue('E1', 'AlternateContactNumber');
$this->excel->getActiveSheet()->setCellValue('F1', 'EmailAddress');
$this->excel->getActiveSheet()->setCellValue('G1', 'Exiseregistration');
$this->excel->getActiveSheet()->setCellValue('H1', 'TIN');
$this->excel->getActiveSheet()->setCellValue('I1', 'PAN');
$this->excel->getActiveSheet()->setCellValue('J1', 'CSTNO');
$this->excel->getActiveSheet()->setCellValue('K1', 'CST Date');
$this->excel->getActiveSheet()->setCellValue('L1', 'GST NO');
$this->excel->getActiveSheet()->setCellValue('M1', 'GST Range');
$this->excel->getActiveSheet()->setCellValue('N1', 'Collectrate Address');
$this->excel->getActiveSheet()->setCellValue('O1', 'UANumber');
$this->excel->getActiveSheet()->setCellValue('P1', 'PaymentTerms');
$this->excel->getActiveSheet()->setCellValue('Q1', 'PaymentDays');
$this->excel->getActiveSheet()->setCellValue('R1', 'PayableAT');
$this->excel->getActiveSheet()->setCellValue('S1', 'Createdby');
$this->excel->getActiveSheet()->setCellValue('T1', 'UpdatedBy');
$this->excel->getActiveSheet()->setCellValue('U1', 'IsActive');
$this->excel->getActiveSheet()->getStyle('A1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('A1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('B1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('B1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('C1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('C1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('D1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('D1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('E1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('E1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('F1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('F1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('G1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('G1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('H1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('H1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('I1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('I1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('J1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('J1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('K1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('K1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('L1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('L1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('M1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('M1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('N1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('N1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('O1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('O1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('P1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('P1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('Q1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('Q1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('R1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('R1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('S1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('S1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('T1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('T1')->getFont()->setBold(true);
$this->excel->getActiveSheet()->getStyle('U1')->getFont()->setSize(12);
$this->excel->getActiveSheet()->getStyle('U1')->getFont()->setBold(true);
$exportData = $this->supplier_model->export_excel();
if ($exportData) {
$i = 2;
$s = 1;
foreach ($exportData as $data) {
$this->excel->getActiveSheet()->setCellValue('A' . $i,$data['SupplierID']);
$this->excel->getActiveSheet()->setCellValue('B' . $i,$data['SupplierName']);
$this->excel->getActiveSheet()->setCellValue('C' . $i,$data['Address']);
$this->excel->getActiveSheet()->setCellValue('D' . $i,$data['ContactNumber']);
$this->excel->getActiveSheet()->setCellValue('E' . $i,$data['AlternateContactNumber']);
$this->excel->getActiveSheet()->setCellValue('F' . $i,$data['EmailAddress']);
$this->excel->getActiveSheet()->setCellValue('G' . $i,$data['Exiseregistration']);
$this->excel->getActiveSheet()->setCellValue('H' . $i,$data['TIN']);
$this->excel->getActiveSheet()->setCellValue('I' . $i,$data['PAN']);
$this->excel->getActiveSheet()->setCellValue('J' . $i,$data['CSTNO']);
$this->excel->getActiveSheet()->setCellValue('K' . $i,$data['CSTDate']);
$this->excel->getActiveSheet()->setCellValue('L' . $i,$data['GSTNO']);
$this->excel->getActiveSheet()->setCellValue('M' . $i,$data['GSTRange']);
$this->excel->getActiveSheet()->setCellValue('N' . $i,$data['CollectrateAddress']);
$this->excel->getActiveSheet()->setCellValue('O' . $i,$data['UANumber']);
$this->excel->getActiveSheet()->setCellValue('P' . $i,$data['PaymentTerms']);
$this->excel->getActiveSheet()->setCellValue('Q' . $i,$data['PaymentDays']);
$this->excel->getActiveSheet()->setCellValue('R' . $i,$data['PayableAT']);
$this->excel->getActiveSheet()->setCellValue('S' . $i,$data['firstname']);
$this->excel->getActiveSheet()->setCellValue('T' . $i,$data['Update_by']);
$this->excel->getActiveSheet()->setCellValue('U' . $i,$data['IsActive']);
$i++;
$s++;
}
}
$filename = 'supplierdetails' .' '. '.xls'; //save our workbook as this file name
header('Content-Type: application/vnd.ms-excel'); //mime type
header('Content-Disposition: attachment;filename="' . $filename . '"'); //tell browser what's the file name
header('Cache-Control: max-age=0'); //no cache
$objWriter = PHPExcel_IOFactory::createWriter($this->excel, 'Excel5');
if (ob_get_contents()) ob_end_clean();
ob_start();
$objWriter->save('php://output');
}
function pageNotFound()
{
$this->global['pageTitle'] = 'Siddharth : 404 - Page Not Found';

View File

@ -1 +1,18 @@
<? if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ini_set('error_reporting', E_STRICT); require_once APPPATH."/third_party/PHPExcel.php"; class Excel extends PHPExcel { public function __construct() { parent::__construct(); } } ?>
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
* =======================================
* Author : Muhammad Surya Ikhsanudin
* License : Protected
* Email : mutofiyah@gmail.com
*
* Dilarang merubah, mengganti dan mendistribusikan
* ulang tanpa sepengetahuan Author
* =======================================
*/
require_once APPPATH."third_party/PHPExcel.php";
class Excel extends PHPExcel {
public function __construct() {
parent::__construct();
}
}

View File

@ -0,0 +1,18 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
/*
* =======================================
* Author : Muhammad Surya Ikhsanudin
* License : Protected
* Email : mutofiyah@gmail.com
*
* Dilarang merubah, mengganti dan mendistribusikan
* ulang tanpa sepengetahuan Author
* =======================================
*/
require_once APPPATH."/third_party/PHPExcel.php";
class Excel extends PHPExcel {
public function __construct() {
parent::__construct();
}
}

View File

@ -68,3 +68,8 @@ ERROR - 2017-05-31 10:07:39 --> Severity: Notice --> Undefined variable: CostLi
ERROR - 2017-05-31 10:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 222
ERROR - 2017-05-31 10:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 222
ERROR - 2017-05-31 10:08:36 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\importpo.php 222
ERROR - 2017-05-31 14:27:45 --> Unable to load the requested class: phpreport
ERROR - 2017-05-31 14:28:00 --> Unable to load the requested class: phpreport
ERROR - 2017-05-31 14:33:42 --> Non-existent class: Excel
ERROR - 2017-05-31 14:34:08 --> Non-existent class: Excel2
ERROR - 2017-05-31 15:24:27 --> 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

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,108 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-06-02 07:21:22 --> Severity: Notice --> Undefined variable: searchText C:\xampp\htdocs\siddharth_application\application\views\assetListing.php 35
ERROR - 2017-06-02 07:21:22 --> Severity: Notice --> Undefined property: CI_Loader::$pagination C:\xampp\htdocs\siddharth_application\application\views\assetListing.php 90
ERROR - 2017-06-02 08:28:41 --> Query error: Unknown column 'det.*dep.DepartmentName' in 'field list'
ERROR - 2017-06-02 15:00:10 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:10 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:11 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:00:12 --> Severity: Notice --> Undefined index: EmpList C:\xampp\htdocs\siddharth_application\application\views\addNew.php 46
ERROR - 2017-06-02 15:16:51 --> 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 'as capital, sum(if(budgettype=REVENUE, `budgetamount`, `0))` as revenue, sum(if(' at line 1

View File

@ -0,0 +1,725 @@
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); ?>
ERROR - 2017-06-05 07:22:05 --> 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 'as capital, sum(if(budgettype=REVENUE, `budgetamount`, `0))` as revenue, sum(if(' at line 1
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:00 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: AssetCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 427
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 430
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: REVENUE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 431
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: IMPORT C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 432
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SERVICE C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:36:01 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:36:02 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:36:02 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 453
ERROR - 2017-06-05 07:36:02 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 454
ERROR - 2017-06-05 07:36:02 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 455
ERROR - 2017-06-05 07:37:35 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:35 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:35 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:35 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:35 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:36 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:37 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:37 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:37 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 453
ERROR - 2017-06-05 07:37:37 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 454
ERROR - 2017-06-05 07:37:37 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 455
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:37:48 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:37:48 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 453
ERROR - 2017-06-05 07:37:48 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 454
ERROR - 2017-06-05 07:37:48 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 455
ERROR - 2017-06-05 07:39:29 --> Query error: Unknown column 'det.DEPCode' in 'on clause'
ERROR - 2017-06-05 07:43:48 --> Query error: Unknown column 'det.createdby' in 'on clause'
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:50 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:51 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:52 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:53 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:54 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: DEPCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 435
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: SupplierCode C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 436
ERROR - 2017-06-05 07:44:55 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:44:55 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 453
ERROR - 2017-06-05 07:44:55 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 454
ERROR - 2017-06-05 07:44:55 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 455
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:27 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:28 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:29 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: BudgetYear C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 434
ERROR - 2017-06-05 07:48:30 --> Severity: Notice --> Undefined index: Remarks C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 438
ERROR - 2017-06-05 07:48:30 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 453
ERROR - 2017-06-05 07:48:30 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 454
ERROR - 2017-06-05 07:48:30 --> Severity: Warning --> Cannot modify header information - headers already sent by (output started at C:\xampp\htdocs\siddharth_application\system\core\Exceptions.php:186) C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 455
ERROR - 2017-06-05 08:07:51 --> 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 'as capital, sum(if(budgettype=REVENUE, `budgetamount`, `0))` as revenue, sum(if(' at line 1
ERROR - 2017-06-05 08:09:58 --> 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 'as capital, sum(if(budgettype=`REVENUE`, `budgetamount`, `0))` as revenue, sum(i' at line 1
ERROR - 2017-06-05 08:12:25 --> 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 'as capital, sum(if(budgettype="REVENUE", `budgetamount`, `0))` as revenue, sum(i' at line 1
ERROR - 2017-06-05 08:13:54 --> 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 '.*, `part`.`DepartmentName`, sum(if(budgettype='CAPITAL', `budgetamount`, `0))` ' at line 1
ERROR - 2017-06-05 08:14:55 --> 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 'as capital, sum(if(budgettype='REVENUE', `budgetamount`, `0))` as revenue, sum(i' at line 1
ERROR - 2017-06-05 08:16:39 --> 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 'as capital, sum(if(budgettype='REVENUE', `budgetamount`, `0))` as revenue, sum(i' at line 1
ERROR - 2017-06-05 08:20:38 --> 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 'as capital
FROM (`T_CostCenter_Master` as bud)
LEFT JOIN `T_CostCenter_Budget` a' at line 1
ERROR - 2017-06-05 08:31:36 --> Query error: Column 'CostCenterCode' in group statement is ambiguous
ERROR - 2017-06-05 08:33:01 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:33:53 --> Severity: Notice --> Undefined index: CAPITAL C:\xampp\htdocs\siddharth_application\application\controllers\CostCenter.php 433
ERROR - 2017-06-05 08:35:12 --> 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 'as capital
FROM (`T_CostCenter_Master` as bud)
LEFT JOIN `T_CostCenter_Budget` a' at line 1
ERROR - 2017-06-05 08:35:30 --> 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 'as capital
FROM (`T_CostCenter_Master` as bud)
LEFT JOIN `T_CostCenter_Budget` a' at line 1
ERROR - 2017-06-05 08:36:20 --> Query error: Unknown column 'CAPITAL' in 'field list'
ERROR - 2017-06-05 08:36:34 --> Query error: Unknown column 'CAPITAL' in 'field list'
ERROR - 2017-06-05 08:36:54 --> Query error: Unknown column 'CAPITAL' in 'field list'
ERROR - 2017-06-05 08:37:03 --> Query error: Unknown column 'REVENUE' in 'field list'

View File

@ -172,6 +172,15 @@ function addNewasset($asset)
return TRUE;
}
function export_excel(){
$this->db->select('det.*,dep.DepartmentName as DEPCode,emp.firstname,emp1.firstname as Updated_By');
$this->db->join('tbl_users as tbl',' det.createdby = tbl.userid','left');
$this->db->join('T_DepartmentDetails as dep','dep.DEPCode=det.DEPCode');
$this->db->join('T_Employee_Details as emp', 'emp.empid=tbl.empid','left');
$this->db->join('tbl_users as tbl1',' det.UpdatedBy = tbl1.userid','left');
$this->db->join('T_Employee_Details as emp1', 'emp1.empid=tbl1.empid','left');
return $this->db->get('T_Asset_Details as det')->result_array();
}
}
?>

View File

@ -357,5 +357,27 @@ function addNewcost($Cost)
return $query->result();
}
function export_excel(){
$this->db->select('Mas.*,bud.*,part.DepartmentName,emp.firstname,emp1.firstname as Updated_By');
$this->db->select('sum(if(budgettype="CAPITAL",budgetamount,0)) as capital',FALSE);
$this->db->select('sum(if(budgettype="REVENUE",budgetamount,0)) as revenue',FALSE);
$this->db->select('sum(if(budgettype="SERVICE",budgetamount,0)) as service',FALSE);
$this->db->select('sum(if(budgettype="IMPORT",budgetamount,0)) as import',FALSE);
$this->db->join('T_CostCenter_Budget as Mas',' Mas.CostCenterCode=bud.CostCenterCode','left');
$this->db->join('T_CostCenter_Departments as dep',' dep.CostCenterCode=Mas.CostCenterCode','left');
$this->db->join('T_DepartmentDetails as part','part.DEPCode=dep.DEPCode','left');
$this->db->group_by('bud.CostCenterCode');
$this->db->join('tbl_users as tbl',' bud.createdby = tbl.userid','left');
$this->db->join('T_Employee_Details as emp', 'emp.empid=tbl.empid','left');
$this->db->join('tbl_users as tbl1',' bud.UpdatedBy = tbl1.userid','left');
$this->db->join('T_Employee_Details as emp1', 'emp1.empid=tbl1.empid','left');
return $this->db->get('T_CostCenter_Master as bud')->result_array();
}
}
?>

View File

@ -197,5 +197,16 @@ function getEmployeeCount( )
$query = $this->db->get();
return $query->result();
}
function export_excel(){
$this->db->select(' det.*,Dep.DepartmentName as DepartmentName,det.firstname,emp1.firstname as UpdatedBy');
$this->db->join('T_DepartmentDetails Dep', 'det.Departmentcode = Dep.DEPCode','left');
$this->db->join('tbl_users as tbl',' det.createdby = tbl.userid','left');
$this->db->join('T_Employee_Details as emp', 'emp.empid=tbl.empid','left');
$this->db->join('tbl_users as tbl1',' det.UpdatedBy = tbl1.userid','left');
$this->db->join('T_Employee_Details as emp1', 'emp1.empid=tbl1.empid','left');
return $this->db->get('T_Employee_Details as det')->result_array();
}
}
?>

View File

@ -133,6 +133,16 @@ function addNewRawMaterial($RawMaterial='')
return TRUE;
}
function export_excel(){
$this->db->select('det.MaterialCode,det.MaterialName,det.MaterialType,det.UOM,emp.firstname,emp1.firstname as Updated_By,det.IsActive');
$this->db->join('tbl_users as tbl',' det.createdby = tbl.userid','left');
$this->db->join('T_Employee_Details as emp', 'emp.empid=tbl.empid','left');
$this->db->join('tbl_users as tbl1',' det.UpdatedBy = tbl1.userid','left');
$this->db->join('T_Employee_Details as emp1', 'emp1.empid=tbl1.empid','left');
return $this->db->get('T_MaterialMaster as det')->result_array();
}
/**
* This function is used to delete the user information
* @param number $userId : This is user id

View File

@ -173,6 +173,16 @@ function addNewsupplier($supplier)
return TRUE;
}
function export_excel(){
$this->db->select('det.SupplierID,SupplierName,det.Address,det.ContactNumber,det.AlternateContactNumber,det.EmailAddress,det.Exiseregistration,det.TIN,
det.PAN,det.CSTNO,det.CSTDate,det.GSTNO,det.GSTRange,det.CollectrateAddress,det.UANumber,det.PaymentTerms,det.PaymentDays,det.PayableAT,emp.firstname ,emp1.firstname as Update_by,,det.IsActive');
$this->db->join('tbl_users as tbl',' det.createdby = tbl.userid','left');
$this->db->join('T_Employee_Details as emp', 'emp.empid=tbl.empid','left');
$this->db->join('tbl_users as tbl1',' det.UpdatedBy = tbl1.userid','left');
$this->db->join('T_Employee_Details as emp1', 'emp1.empid=tbl1.empid','left');
return $this->db->get('T_SupplierDetailsN as det')->result_array();
}

1076
application/third_party/PHPReport.php vendored Normal file

File diff suppressed because it is too large Load Diff

View File

@ -22,6 +22,7 @@ speed:500
<div class="col-xs-12 text-right">
<div class="form-group">
<a class="btn btn-primary" href="<?php echo base_url(); ?>addasset">Add New Asset</a>
<a class="btn btn-primary" href="<?php echo base_url(); ?>assetdetails/export_asset">Export Asset Details <i class="fa fa-download"aira-hidden="true"></i></a>
</div>
</div>
</div>

View File

@ -20,6 +20,7 @@ speed:500
<div class="col-xs-12 text-right">
<div class="form-group">
<a class="btn btn-primary" href="<?php echo base_url(); ?>CostCenter/addCostCenter">Add New Cost List</a>
<a class="btn btn-primary" href="<?php echo base_url(); ?>costcenter/export_cost">Export Asset Details <i class="fa fa-download"aira-hidden="true"></i></a>
</div>
</div>
</div>

View File

@ -22,6 +22,7 @@ speed:500
<div class="col-xs-12 text-right">
<div class="form-group">
<a class="btn btn-primary" href="<?php echo base_url(); ?>addemployee">Add New Employee</a>
<a class="btn btn-primary" href="<?php echo base_url(); ?>employeedetails/export_employee">Export Employee Details <i class="fa fa-download"aira-hidden="true"></i></a>
</div>
</div>
</div>

View File

@ -20,6 +20,7 @@ speed:500
<div class="col-xs-12 text-right">
<div class="form-group">
<a class="btn btn-primary" href="<?php echo base_url(); ?>addRawmaterial">Add New Material</a>
<a class="btn btn-primary" href="<?php echo base_url(); ?>rawmaterialdetails/export_material">Export Material Master <i class="fa fa-download"aira-hidden="true"></i></a>
</div>
</div>
</div>

View File

@ -21,6 +21,7 @@ speed:500
<div class="col-xs-12 text-right">
<div class="form-group">
<a class="btn btn-info" href="<?php echo base_url(); ?>addsupplier">Add New Supplier</a>
<a class="btn btn-info" href="<?php echo base_url(); ?>supplier/export_supplierdetails">Export supplier details <i class="fa fa-download"aira-hidden="true"></i></a>
</div>
</div>
</div>