+
diff --git a/application/controllers/assetdetails.php b/application/controllers/assetdetails.php index 68b7504e..1b7d1761 100755 --- a/application/controllers/assetdetails.php +++ b/application/controllers/assetdetails.php @@ -44,24 +44,79 @@ class assetdetails extends BaseController $data['userRecords'] = $this->assetdetails_model->assetListing(); $this->global['pageTitle'] = 'Siddharth : Asset List'; - + //print_r($data);die(); $this->loadViews("assetListing", $this->global, $data, NULL); } /** * This function is used to load the add new supplier */ - function addasset() + function addasset($PO='') { - $data['SupplierList'] = $this->assetdetails_model->getSupplierName(); - $data['DepartmentList'] = $this->assetdetails_model->getDepartment(); + $data['AssetStatus'] = $this->assetdetails_model->getConfigValue('C015'); - + $data['po'] = $this->assetdetails_model->getPO($PO); + + //print_r($data);die(); $this->global['pageTitle'] = 'siddharth : Add Asset'; - + $this->loadViews("addasset", $this->global, $data, NULL); } + + + function getpo() + { + $po = $this->input->post('PONO'); + $data = $this->assetdetails_model->getpo($po); + + echo json_encode($data); + die(); + } + + function getline() + { + $line = $this->input->post('line'); + + + $type = $this->assetdetails_model->gettyp($line); + //print_r($type);die(); + $data=''; + if(!empty($type)){ + + foreach($type as $item){ + + $data = $item->POType; + //print_r($data);die(); + + } + } + + if($data=='SERVICE'){ + $ser= $this->assetdetails_model->getlineitemser($line); + } + elseif($data=='REVENUE'){ + $ser = $this->assetdetails_model->getlineitemre($line); + } + elseif($data=='IMPORT'){ + $ser = $this->assetdetails_model->getlineitemimport($line); + } + elseif($data=='CAPITAL'){ + $ser = $this->assetdetails_model->getlineitemcap($line); + } + //print_r($ser);die(); + + + //print_r($data);die(); + //$data = $this->getDateformat($data); + echo json_encode($ser); + die(); + } + function getlin(){ + $line = $this->input->post('line'); + + + } /* Validation for Department Dropdown */ function Department_validate($selectValue) @@ -118,7 +173,7 @@ class assetdetails extends BaseController { $this->form_validation->set_rules('AssetName','AssetName','trim|required'); - $this->form_validation->set_rules('Description','Description','trim|required'); + //$this->form_validation->set_rules('Description','Description','trim|required'); $this->form_validation->set_rules('Department','Department','trim|callback_Department_validate'); $this->form_validation->set_rules('Location','Location','trim|required'); $this->form_validation->set_rules('User','User','trim|required'); @@ -137,7 +192,7 @@ class assetdetails extends BaseController { $AssetName = strtoupper($this->input->post('AssetName')); $Description = $this->input->post('Description'); - $Department = $this->input->post('Department'); + $Department = $this->input->post('AssetDept'); $Location = $this->input->post('Location'); $User = $this->input->post('User'); $SupplierName = $this->input->post('SupplierName'); @@ -149,6 +204,11 @@ class assetdetails extends BaseController $DOCommission= $this->getDateformat($DateOfCommission); $AssetStatus = $this->input->post('AssetStatus'); $Remarks = $this->input->post('Remarks'); + $PONO = $this->input->post('PONO'); + $lineitem = $this->input->post('lineitem'); + $MaterialCode = $this->input->post('MaterialCode'); + $Quantity = $this->input->post('Quantity'); + $chked = $this->input->post('isactive'); @@ -165,10 +225,10 @@ class assetdetails extends BaseController $asset = array(); - $asset = array('AssetName'=>$AssetName, 'Description'=>$Description,'DEPCode'=>$Department,'Location'=>$Location,'UserName'=>$User,'SupplierCode'=>$SupplierName,'DateOfPurchase'=>$DOPurchase,'DateOfCommison'=>$DOCommission,'AssetValue'=>$AssetValue,'AssetStatus'=>$AssetStatus,'IsActive'=>$IsActive,'Remarks'=>$Remarks,'CreatedBy'=>$CreatedBy); - + $asset = array('AssetName'=>$AssetName, 'Description'=>$Description,'DEPCode'=>$Department,'Location'=>$Location,'UserName'=>$User,'SupplierCode'=>$SupplierName,'DateOfPurchase'=>$DOPurchase,'DateOfCommison'=>$DOCommission,'AssetValue'=>$AssetValue,'AssetStatus'=>$AssetStatus,'IsActive'=>$IsActive,'Remarks'=>$Remarks,'CreatedBy'=>$CreatedBy,'PONO'=>$PONO,'POLineItem'=>$lineitem,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity); + //print_r($asset);die(); $result = $this->assetdetails_model->addNewasset($asset); - + // print_r($result);die(); if($result > 0) { // $this->session->set_flashdata('success', 'New Asset created successfully'); @@ -194,7 +254,7 @@ class assetdetails extends BaseController echo $this->input->post('Asset_Code'); }*/ - function editOldasset($AssetCode = '') + function editOldasset($AssetCode = '',$PO='') { $SupplierName = $this->input->post('SupplierName'); @@ -213,10 +273,12 @@ class assetdetails extends BaseController //echo $AssetID; $data['assetList'] = $this->assetdetails_model->getAssetDetails($AssetID); - $data['SupplierList'] = $this->assetdetails_model->getSupplierName($SupplierName); - $data['DepartmentList'] = $this->assetdetails_model->getDepartment($Department); + // $data['SupplierList'] = $this->assetdetails_model->getSupplierName($SupplierName); + // $data['DepartmentList'] = $this->assetdetails_model->getDepartment($Department); $data['AssetStatusList'] = $this->assetdetails_model->getConfigValue('C015'); - $this->global['pageTitle'] = 'Siddharth : Edit Asset'; + $data['PO'] = $this->assetdetails_model->getPO($PO); + //print_r($data);die(); + $this->global['pageTitle'] = 'Siddharth : Edit Asset'; $this->loadViews("editOldasset", $this->global, $data,NULL); @@ -264,7 +326,10 @@ class assetdetails extends BaseController $DOCommission= $this->getDateformat($DateOfCommission); $AssetStatus = $this->input->post('AssetStatus'); $Remarks = $this->input->post('Remarks'); - + $PONO = $this->input->post('PONO'); + $lineitem = $this->input->post('lineitem'); + $MaterialCode = $this->input->post('MaterialCode'); + $Quantity = $this->input->post('Quantity'); $chked = $this->input->post('isactive'); if( $chked != '') @@ -280,9 +345,9 @@ class assetdetails extends BaseController $asset = array(); - $asset = array('AssetName'=>$AssetName, 'Description'=>$Description,'DEPCode'=>$Department,'Location'=>$Location,'UserName'=>$User,'SupplierCode'=>$SupplierName,'DateOfPurchase'=>$DOPurchase,'DateOfCommison'=>$DOCommission,'AssetValue'=>$AssetValue,'AssetStatus'=>$AssetStatus,'IsActive'=>$IsActive,'Remarks'=>$Remarks,'UpdatedBy'=>$UpdatedBy); - + $asset = array('AssetName'=>$AssetName, 'Description'=>$Description,'DEPCode'=>$Department,'Location'=>$Location,'UserName'=>$User,'SupplierCode'=>$SupplierName,'DateOfPurchase'=>$DOPurchase,'DateOfCommison'=>$DOCommission,'AssetValue'=>$AssetValue,'AssetStatus'=>$AssetStatus,'IsActive'=>$IsActive,'Remarks'=>$Remarks,'UpdatedBy'=>$UpdatedBy,'PONO'=>$PONO,'POLineItem'=>$lineitem,'MaterialCode'=>$MaterialCode,'Quantity'=>$Quantity); + //print_r($asset);die(); $result = $this->assetdetails_model->editasset($asset, $Asset_Code); @@ -334,18 +399,23 @@ class assetdetails extends BaseController $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('F5', 'DepartmentName'); $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()->setCellValue('H5', 'PONO'); + $this->excel->getActiveSheet()->setCellValue('I5', 'POLineItem'); + $this->excel->getActiveSheet()->setCellValue('J5', 'MaterialName'); + $this->excel->getActiveSheet()->setCellValue('K5', 'Quanity'); + + $this->excel->getActiveSheet()->setCellValue('L5', 'UserName'); + $this->excel->getActiveSheet()->setCellValue('M5', 'SupplierName'); + $this->excel->getActiveSheet()->setCellValue('N5', 'DateOfPurchase'); + $this->excel->getActiveSheet()->setCellValue('O5', 'DateOfCommison'); + $this->excel->getActiveSheet()->setCellValue('P5', 'AssetValue'); + $this->excel->getActiveSheet()->setCellValue('Q5', 'AssetStatus'); + $this->excel->getActiveSheet()->setCellValue('R5', 'IsActive'); + $this->excel->getActiveSheet()->setCellValue('S5', 'Remarks'); + $this->excel->getActiveSheet()->setCellValue('T5', 'CreatedBy'); + $this->excel->getActiveSheet()->setCellValue('U5', 'UpdatedBy'); @@ -382,12 +452,22 @@ class assetdetails extends BaseController $this->excel->getActiveSheet()->getStyle('P5')->getFont()->setBold(true); $this->excel->getActiveSheet()->getStyle('Q5')->getFont()->setSize(12); $this->excel->getActiveSheet()->getStyle('Q5')->getFont()->setBold(true); + $this->excel->getActiveSheet()->getStyle('R5')->getFont()->setSize(12); + $this->excel->getActiveSheet()->getStyle('R5')->getFont()->setBold(true); + $this->excel->getActiveSheet()->getStyle('S5')->getFont()->setSize(12); + $this->excel->getActiveSheet()->getStyle('S5')->getFont()->setBold(true); + $this->excel->getActiveSheet()->getStyle('T5')->getFont()->setSize(12); + $this->excel->getActiveSheet()->getStyle('T5')->getFont()->setBold(true); + $this->excel->getActiveSheet()->getStyle('U5')->getFont()->setSize(12); + $this->excel->getActiveSheet()->getStyle('U5')->getFont()->setBold(true); + + $exportData = $this->assetdetails_model->export_excel(); - +//print_r($exportData);die(); if ($exportData) { $i = 6; $s = 1; @@ -399,16 +479,20 @@ class assetdetails extends BaseController $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']); + $this->excel->getActiveSheet()->setCellValue('H'. $i,$data[ 'PONO']); + $this->excel->getActiveSheet()->setCellValue('I'. $i,$data[ 'POLineItem']); + $this->excel->getActiveSheet()->setCellValue('J'. $i,$data[ 'MaterialName']); + $this->excel->getActiveSheet()->setCellValue('K'. $i,$data[ 'Quantity']); + $this->excel->getActiveSheet()->setCellValue('L'. $i,$data[ 'UserName']); + $this->excel->getActiveSheet()->setCellValue('M'. $i,$data[ 'SupplierName']); + $this->excel->getActiveSheet()->setCellValue('N'. $i,$data[ 'DateOfPurchase']); + $this->excel->getActiveSheet()->setCellValue('O'. $i,$data[ 'DateOfCommison']); + $this->excel->getActiveSheet()->setCellValue('P'. $i,$data[ 'AssetValue']); + $this->excel->getActiveSheet()->setCellValue('Q'. $i,$data[ 'AssetStatus']); + $this->excel->getActiveSheet()->setCellValue('R'. $i,$data[ 'IsActive']); + $this->excel->getActiveSheet()->setCellValue('S'. $i,$data[ 'Remarks']); + $this->excel->getActiveSheet()->setCellValue('T'. $i,$data[ 'firstname']); + $this->excel->getActiveSheet()->setCellValue('U'. $i,$data[ 'Updated_By']); diff --git a/application/logs/log-2017-07-18.php b/application/logs/log-2017-07-18.php new file mode 100644 index 00000000..c242832a --- /dev/null +++ b/application/logs/log-2017-07-18.php @@ -0,0 +1,1509 @@ + + +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:45 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:46 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:47 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:48 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:49 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:50 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:51 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:52 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:53 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:54 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\addasset.php 136 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\addasset.php 143 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: AssetStatus C:\xampp\htdocs\siddharth_application\application\views\addasset.php 266 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: AssetStatus C:\xampp\htdocs\siddharth_application\application\views\addasset.php 266 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: AssetStatus C:\xampp\htdocs\siddharth_application\application\views\addasset.php 266 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: AssetStatus C:\xampp\htdocs\siddharth_application\application\views\addasset.php 266 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: AssetStatus C:\xampp\htdocs\siddharth_application\application\views\addasset.php 266 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: AssetStatus C:\xampp\htdocs\siddharth_application\application\views\addasset.php 266 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: AssetStatus C:\xampp\htdocs\siddharth_application\application\views\addasset.php 266 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:55 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:56 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:57 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:58 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:52:59 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:00 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:01 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:01 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:01 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:01 --> Severity: Notice --> Undefined index: PONO C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 222 +ERROR - 2017-07-18 14:53:01 --> Severity: Notice --> Undefined variable: SID C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 +ERROR - 2017-07-18 14:53:01 --> Severity: Notice --> Trying to get property of non-object C:\xampp\htdocs\siddharth_application\application\views\editOldasset.php 229 diff --git a/application/models/assetdetails_model.php b/application/models/assetdetails_model.php index ba9bf629..a17e977e 100755 --- a/application/models/assetdetails_model.php +++ b/application/models/assetdetails_model.php @@ -12,9 +12,10 @@ class assetdetails_model extends CI_Model */ function assetListing() { - $this->db->select('*'); - $this->db->from('T_Asset_Details'); - + $this->db->select('asd.*,dep.DepartmentName,sup.SupplierName'); + $this->db->from('T_Asset_Details asd'); + $this->db->join('T_DepartmentDetails dep', ' dep.DEPCode = asd.DEPCode','left'); + $this->db->join ('T_SupplierDetailsN sup','sup.SupplierID = asd.SupplierCode'); $query = $this->db->get(); @@ -50,7 +51,102 @@ class assetdetails_model extends CI_Model return $query->result(); } + function getPO($PO){ + + + $this->db->distinct(); + $this->db->select('POM.PONO,POM.SupplierID,POL.MaterialCode,DeliveryDate,PODate,sup.SupplierName,POL.LineItemNo'); + $this->db->from('T_PurchaseOrder_Master POM'); + $this->db->join('T_PurchaseOrder_LineItem POL', 'POL.PONO = POM.PONO'); + $this->db->join('T_SupplierDetailsN sup', 'sup.SupplierID = POM.SupplierID'); + + if(!empty($PO)){ + $this->db->where('POM.PONO', $PO); + } + $query = $this->db->get(); + //print_r($this->db->last_query()); + return $query->result(); + + } + function getlineitemre($line){ + $this->db->select('POL.LineItemNo,POL.MaterialCode,MM.MaterialName,MM.UOM,POL.Quantity,POM.POType,re.TotalValue,req.ReqNo,emp.firstname,emp.Departmentcode,dep.DepartmentName'); + $this->db->from('T_PurchaseOrder_LineItem POL'); + $this->db->join('T_Requestion_Master req','req.ReqNo = POL.ReqNo','left'); + $this->db->join('T_PurchaseOrder_Master POM','POM.PONO=POL.PONO','left'); + $this->db->join ('T_MaterialMaster MM','MM.MaterialCode = POL.MaterialCode','left'); + $this->db->join('T_Employee_Details emp','emp.EmpID = req.Requestedby','left'); + $this->db->join('T_DepartmentDetails dep','dep.DEPCode = emp.Departmentcode','left'); + $this->db->join ('T_Revenue_Tax re','re.LineItemNo = POL.LineItemNo','left'); + $this->db->where('POL.LineItemNo',$line); + + $query = $this->db->get(); + + $result = $query->result(); + return $result; + } + + function getlineitemser($line){ + $this->db->select('POL.LineItemNo,POL.MaterialCode,MM.MaterialName,MM.UOM,POM.POType,POL.Quantity,ser.TotalValue,req.ReqNo,emp.firstname,dep.DepartmentName,emp.Departmentcode'); + $this->db->from('T_PurchaseOrder_LineItem POL'); + $this->db->join('T_Requestion_Master req','req.ReqNo = POL.ReqNo','left'); + $this->db->join('T_PurchaseOrder_Master POM','POM.PONO=POL.PONO','left'); + $this->db->join ('T_MaterialMaster MM','MM.MaterialCode = POL.MaterialCode','left'); + $this->db->join('T_Employee_Details emp','emp.EmpID = req.Requestedby','left'); + $this->db->join('T_DepartmentDetails dep','dep.DEPCode = emp.Departmentcode','left'); + $this->db->join ('T_Service_Tax ser','ser.LineItemNo = POL.LineItemNo','left'); + $this->db->where('POL.LineItemNo',$line); + + $query = $this->db->get(); + + $result = $query->result(); + return $result; + } + function getlineitemimport($line){ + $this->db->select('POL.LineItemNo,POL.MaterialCode,MM.MaterialName,MM.UOM,POM.POType,POL.Quantity,ser.TotalValue,req.ReqNo,emp.firstname,dep.DepartmentName,emp.Departmentcode'); + $this->db->from('T_PurchaseOrder_LineItem POL'); + $this->db->join('T_Requestion_Master req','req.ReqNo = POL.ReqNo','left'); + $this->db->join('T_PurchaseOrder_Master POM','POM.PONO=POL.PONO','left'); + $this->db->join ('T_MaterialMaster MM','MM.MaterialCode = POL.MaterialCode','left'); + $this->db->join('T_Employee_Details emp','emp.EmpID = req.Requestedby','left'); + $this->db->join('T_DepartmentDetails dep','dep.DEPCode = emp.Departmentcode','left'); + $this->db->join ('T_Import_Tax ser','ser.LineItemNo = POL.LineItemNo','left'); + $this->db->where('POL.LineItemNo',$line); + + $query = $this->db->get(); + + $result = $query->result(); + return $result; + } + + function getlineitemcap($line){ + $this->db->select('POL.LineItemNo,POL.MaterialCode,MM.MaterialName,MM.UOM,POM.POType,POL.Quantity,sum(ser.TotalValue+imp.TotalValue) as TotalValue,req.ReqNo,emp.firstname,dep.DepartmentName,emp.Departmentcode'); + $this->db->from('T_PurchaseOrder_LineItem POL'); + $this->db->join('T_Requestion_Master req','req.ReqNo = POL.ReqNo','left'); + $this->db->join('T_PurchaseOrder_Master POM','POM.PONO=POL.PONO','left'); + $this->db->join ('T_MaterialMaster MM','MM.MaterialCode = POL.MaterialCode','left'); + $this->db->join('T_Employee_Details emp','emp.EmpID = req.Requestedby','left'); + $this->db->join('T_DepartmentDetails dep','dep.DEPCode = emp.Departmentcode','left'); + $this->db->join ('T_Import_Tax imp','imp.LineItemNo = POL.LineItemNo','left'); + $this->db->join ('T_Service_Tax ser','ser.LineItemNo = POL.LineItemNo','left'); + $this->db->where('POL.LineItemNo',$line); + + $query = $this->db->get(); + + $result = $query->result(); + return $result; + } + function gettyp($type) + { + $this->db->select('POM.POType,POL.LineItemNo'); + $this->db->from('T_PurchaseOrder_LineItem POL'); + $this->db->join('T_PurchaseOrder_Master POM','POM.PONO=POL.PONO'); + $this->db->where('POL.LineItemNo',$type); + $query = $this->db->get(); + + $result = $query->result(); + return $result; + } /** * This function is used to get the Config value from configuration table * @return array $result : This is result of the query @@ -96,10 +192,12 @@ function addNewasset($asset) function getAssetDetails($Asset_Code) { //echo $Asset_Code; - $this->db->select('Asset.*,Dep.DepartmentName as DepartmentName,Supp.SupplierName as SupplierName'); + $this->db->select('Asset.*,POM.DeliveryDate,Dep.DepartmentName as DepartmentName,MM.MaterialName,MM.UOM,Supp.SupplierName as SupplierName'); $this->db->from('T_Asset_Details Asset'); $this->db->join('T_DepartmentDetails Dep', 'Asset.DEPCode = Dep.DEPCode','left'); $this->db->join('T_SupplierDetailsN Supp', 'Asset.SupplierCode = Supp.SupplierID','left'); + $this->db->join('T_MaterialMaster MM ', 'MM.MaterialCode = Asset.MaterialCode','left'); + $this->db->join('T_PurchaseOrder_Master POM','POM.PONO = Asset.PONO','left'); $this->db->where('Asset.AssetCode', $Asset_Code); @@ -125,10 +223,12 @@ function addNewasset($asset) } function export_excel(){ - $this->db->select('det.*,dep.DepartmentName as DEPCode,emp.firstname,emp1.firstname as Updated_By'); + $this->db->select('det.*,dep.DepartmentName as DEPCode,sup.SupplierName,MM.MaterialName,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('T_SupplierDetailsN as sup', 'sup.SupplierID=det.SupplierCode','left'); + $this->db->join('T_MaterialMaster MM ', 'MM.MaterialCode = det.MaterialCode','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(); diff --git a/application/views/addasset.php b/application/views/addasset.php index d45b4e47..95f4d68b 100755 --- a/application/views/addasset.php +++ b/application/views/addasset.php @@ -10,7 +10,10 @@ $(function() { var mindt = year-70; var maxdt = year-15; - + $("#PONO").select2(); + $("#SelectMaterialCode").select2(); + $("#AssetStatus").select2(); + $("#DateOfCommission").datepicker({ minDate : new Date(year-SIAStartYear,1,1), maxDate :'now', @@ -27,6 +30,12 @@ $(function() { }); +$("#DeliveryDate").datepicker({ + minDate : new Date(year-SIAStartYear,1,1), + maxDate :'now', + dateFormat: 'mm/dd/yy',changeMonth: true, changeYear: true, +}); + }); @@ -43,7 +52,7 @@ $(function() { -